@@ -62,13 +62,13 @@ |
||
62 | 62 | */ |
63 | 63 | protected function send(CommandInterface $command) |
64 | 64 | { |
65 | - $arguments = func_get_args(); |
|
65 | + $arguments = func_get_args(); |
|
66 | 66 | $command = array_shift($arguments); |
67 | 67 | |
68 | 68 | $argumentsString = ''; |
69 | 69 | if ($arguments) { |
70 | 70 | // add quotes to arguments |
71 | - array_walk($arguments, function (&$value) { |
|
71 | + array_walk($arguments, function(&$value) { |
|
72 | 72 | $value = sprintf('"%s"', $value); |
73 | 73 | }); |
74 | 74 |