We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112368d commit 4e73e28Copy full SHA for 4e73e28
1 file changed
tests/AssetManagerTest/Service/AssetFilterManagerTest.php
@@ -95,7 +95,7 @@ public function testensureByInvalid()
95
$assetFilterManager->setFilters('test/path.test', $asset);
96
}
97
98
- public function testFiltersAreInstantiatedOnce()
+ public function testFiltersAreInstantiatedOnce()
99
{
100
$assetFilterManager = new AssetFilterManager(array(
101
'test/path.test' => array(
@@ -111,7 +111,7 @@ public function testFiltersAreInstantiatedOnce()
111
$asset
112
->expects($this->any())
113
->method('ensureFilter')
114
- ->with($this->callback(function(FilterInterface $filter) use (&$filterInstance) {
+ ->with($this->callback(function (FilterInterface $filter) use (&$filterInstance) {
115
if ($filterInstance === null) {
116
$filterInstance = $filter;
117
0 commit comments