Completed
Push — master ( eccf55...2de74b )
by Amine
02:19
created
src/Command.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.