@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * For the full copyright and license information, please view the LICENSE |
| 6 | 6 | * file that was distributed with this source code. |
| 7 | 7 | */ |
| 8 | -declare(strict_types=1); |
|
| 8 | +declare(strict_types = 1); |
|
| 9 | 9 | |
| 10 | 10 | namespace PhpYacc\Console; |
| 11 | 11 | |
@@ -67,12 +67,12 @@ discard block |
||
| 67 | 67 | private function validateInput(InputInterface $input): void |
| 68 | 68 | { |
| 69 | 69 | $skeleton = $input->getOption('skeleton'); |
| 70 | - if ($skeleton === null || ! \file_exists($skeleton)) { |
|
| 70 | + if ($skeleton === null || !\file_exists($skeleton)) { |
|
| 71 | 71 | throw new InvalidOptionException(\sprintf('The skeleton file "%s" is not found', $skeleton)); |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | $grammar = $input->getArgument('grammar'); |
| 75 | - if (! \file_exists($grammar)) { |
|
| 75 | + if (!\file_exists($grammar)) { |
|
| 76 | 76 | throw new InvalidArgumentException(\sprintf('The grammar file "%s" is not found', $grammar)); |
| 77 | 77 | } |
| 78 | 78 | } |