Browse Source

Fix PHPStan error.

Mark Story 8 years ago
parent
commit
3cc9bc7294
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/Shell/HelpShell.php

+ 3 - 1
src/Shell/HelpShell.php

@@ -79,7 +79,9 @@ class HelpShell extends Shell
         }
 
         if ($this->param('xml')) {
-            return $this->asXml($this->commands);
+            $this->asXml($this->commands);
+
+            return;
         }
         $this->asText($this->commands);
     }