@@ -17,7 +17,6 @@ |
||
| 17 | 17 | use Graze\Dynamark3Client\Command\CommandInterface; |
| 18 | 18 | use Graze\TelnetClient\TelnetResponseInterface; |
| 19 | 19 | use Graze\Dynamark3Client\Dynamark3Response; |
| 20 | -use Graze\Dynamark3Client\Dynamark3Constants; |
|
| 21 | 20 | |
| 22 | 21 | abstract class AbstractCommand implements CommandInterface |
| 23 | 22 | { |
@@ -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 | |