@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | private function getRelevantUsedFiles(array $usedFiles) |
60 | 60 | { |
61 | - return array_filter($usedFiles, function ($usedFile) { return strpos($usedFile, 'Bundle.php') === false; }); |
|
61 | + return array_filter($usedFiles, function($usedFile) { return strpos($usedFile, 'Bundle.php') === false; }); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if (is_dir($path) === false) { |
81 | 81 | $message = 'The path "' . $path . '" is no valid directory.'; |
82 | 82 | } elseif (is_readable($path) === false) { |
83 | - $message ='The directory "' . $path . '" is not readable.'; |
|
83 | + $message = 'The directory "' . $path . '" is not readable.'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | if (isset($message)) { |