@@ -68,7 +68,7 @@ |
||
68 | 68 | public function __invoke() |
69 | 69 | { |
70 | 70 | return array_map( |
71 | - function ($directoryOrFile) { |
|
71 | + function($directoryOrFile) { |
|
72 | 72 | $finder = Finder::create() |
73 | 73 | ->files() |
74 | 74 | ->ignoreDotFiles(true) |
@@ -75,7 +75,7 @@ |
||
75 | 75 | /* @var $file \Symfony\Component\Finder\SplFileInfo */ |
76 | 76 | foreach ($finder as $directoryList) { |
77 | 77 | foreach ($directoryList as $file) { |
78 | - if (! $this->docIsCompatible($validator, $file->getContents())) { |
|
78 | + if (!$this->docIsCompatible($validator, $file->getContents())) { |
|
79 | 79 | defined('FAILED') ?: define('FAILED', 1); |
80 | 80 | $output->writeln('-> ' . $file->getRelativePathname()); |
81 | 81 | } |