@@ -158,7 +158,7 @@ |
||
158 | 158 | { |
159 | 159 | $themes = array_filter( |
160 | 160 | $loadedThemes, |
161 | - static function ($element) use (&$themeName) { |
|
161 | + static function($element) use (&$themeName) { |
|
162 | 162 | return $element->getName() === $themeName; |
163 | 163 | } |
164 | 164 | ); |
@@ -125,7 +125,7 @@ |
||
125 | 125 | { |
126 | 126 | $themes = \array_filter( |
127 | 127 | $this->themeLoader->load(), |
128 | - static function ($element) use (&$themeName) { |
|
128 | + static function($element) use (&$themeName) { |
|
129 | 129 | return $element->getName() === $themeName; |
130 | 130 | } |
131 | 131 | ); |
@@ -68,7 +68,7 @@ |
||
68 | 68 | $files = $this->themeAssetProvider->listContents($path, true); |
69 | 69 | |
70 | 70 | try { |
71 | - $filteredFiles = array_filter($files, static function ($value) use ($name) { |
|
71 | + $filteredFiles = array_filter($files, static function($value) use ($name) { |
|
72 | 72 | return 'file' === $value['type'] && isset($value['extension']) && $value['filename'].'.'.$value['extension'] === $name; |
73 | 73 | }); |
74 | 74 |