@@ -13,7 +13,7 @@ |
||
13 | 13 | public function __construct($command, $args) |
14 | 14 | { |
15 | 15 | $command = $this->camelCaseToUnderScore($command); |
16 | - $parsedArgs = empty($args) ? '' : ' ' . implode(' ' , $args); |
|
16 | + $parsedArgs = empty($args) ? '' : ' ' . implode(' ', $args); |
|
17 | 17 | $this->command = $command . $parsedArgs . Parser::COMMAND_SEPARATOR; |
18 | 18 | } |
19 | 19 |