@@ -83,7 +83,7 @@ |
||
83 | 83 | /* @var $file \Symfony\Component\Finder\SplFileInfo */ |
84 | 84 | foreach ($finder as $dir) { |
85 | 85 | foreach ($dir as $file) { |
86 | - if (! $this->docIsCompatible($validator, $file->getContents(), $docheaderFile)) { |
|
86 | + if (!$this->docIsCompatible($validator, $file->getContents(), $docheaderFile)) { |
|
87 | 87 | defined('FAILED') ?: define('FAILED', 1); |
88 | 88 | $output->writeln('-> ' . $file->getRelativePathname()); |
89 | 89 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | $pathOrFile .= '/.docheader'; |
39 | 39 | } |
40 | 40 | |
41 | - if (! is_file($pathOrFile)) { |
|
41 | + if (!is_file($pathOrFile)) { |
|
42 | 42 | throw DocHeaderFileConfiguration::notFound($pathOrFile); |
43 | 43 | } |
44 | 44 |