@@ -31,7 +31,7 @@ |
||
31 | 31 | ->ignoreVCS(true) |
32 | 32 | ->append( |
33 | 33 | array_map( |
34 | - function (string $file) { |
|
34 | + function(string $file) { |
|
35 | 35 | return new SplFileInfo(realpath($file), dirname($file), $file); |
36 | 36 | }, |
37 | 37 | $files |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | if (false === is_array($result)) { |
230 | 230 | return array_filter( |
231 | 231 | explode(',', $result), |
232 | - function ($value) { |
|
232 | + function($value) { |
|
233 | 233 | return false === empty($value); |
234 | 234 | } |
235 | 235 | ); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | protected function createFinder(InputInterface $input): PHPFinder |
246 | 246 | { |
247 | 247 | return new PHPFinder( |
248 | - $input->getArgument('directories') ?:[''], |
|
248 | + $input->getArgument('directories') ?: [''], |
|
249 | 249 | $input->getOption('exclude'), |
250 | 250 | $input->getOption('exclude-path'), |
251 | 251 | $input->getOption('exclude-file'), |