@@ -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 | ); |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | foreach ($this->paths as $path) { |
| 68 | 68 | $files = $this->themeAssetProvider->listContents($path, true); |
| 69 | 69 | try { |
| 70 | - $filteredFiles = array_filter($files, static function ($value) use ($name) { |
|
| 70 | + $filteredFiles = array_filter($files, static function($value) use ($name) { |
|
| 71 | 71 | return 'file' === $value['type'] && isset($value['extension']) && $value['filename'].'.'.$value['extension'] === $name; |
| 72 | 72 | }); |
| 73 | 73 | |
@@ -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 | ); |