@@ -50,7 +50,7 @@ |
||
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | $files = \array_map( |
| 53 | - function ($file) { |
|
| 53 | + function($file) { |
|
| 54 | 54 | if (!\is_string($file)) { |
| 55 | 55 | throw new ConfigurationException('The `files` parameter must contain string values.'); |
| 56 | 56 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | { |
| 32 | 32 | $this->files = $files ?? new Files(); |
| 33 | 33 | $this->pathResolver = $pathResolver === null |
| 34 | - ? static fn (string $path): string => $path |
|
| 34 | + ? static fn (string $path) : string => $path |
|
| 35 | 35 | : Closure::fromCallable($pathResolver); |
| 36 | 36 | } |
| 37 | 37 | |