Completed
Push — master ( 31f528...8134db )
by Sergey
02:35
created
src/Protocol/Request/SimpleRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.