@@ -37,7 +37,7 @@ |
||
37 | 37 | foreach ($this->paths as $path) { |
38 | 38 | $files = $this->filesystem->listContents($path, true); |
39 | 39 | try { |
40 | - $filteredFiles = \array_filter($files, static function ($value) use ($name) { |
|
40 | + $filteredFiles = \array_filter($files, static function($value) use ($name) { |
|
41 | 41 | return 'file' === $value['type'] && $value['filename'].'.'.$value['extension'] === $name; |
42 | 42 | }); |
43 | 43 |