@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | $this->command($firstArg)->run($args, $console); |
| 318 | 318 | } else { |
| 319 | 319 | $this->console($console); |
| 320 | - if (! $this->syntax()->canParse($args)) { |
|
| 320 | + if (!$this->syntax()->canParse($args)) { |
|
| 321 | 321 | $errors = F\s($this->syntax()->checkParse($args)) |
| 322 | 322 | ->then(F\append("Invalid arguments: '{$args}' for command '{$this->name}'")) |
| 323 | 323 | ->then(F\join(PHP_EOL)) |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | */ |
| 376 | 376 | protected function addDefaultSubCommands() |
| 377 | 377 | { |
| 378 | - if (! ($this instanceof HelpCommand) && ! ($this instanceof VersionCommand)) { |
|
| 378 | + if (!($this instanceof HelpCommand) && !($this instanceof VersionCommand)) { |
|
| 379 | 379 | $this->command('--version', new VersionCommand($this)); |
| 380 | 380 | $this->command('--help', new HelpCommand($this)); |
| 381 | 381 | } |