@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Padawan\Framework\Application\Socket; |
| 4 | 4 | |
| 5 | -use Symfony\Component\Console\Output\OutputInterface; |
|
| 6 | 5 | use Symfony\Component\Console\Output\NullOutput; |
| 7 | 6 | use Amp\Socket\Client; |
| 8 | 7 | |
@@ -29,8 +29,8 @@ |
||
| 29 | 29 | return; |
| 30 | 30 | } |
| 31 | 31 | $arrayForInput = ['command' => $request->command]; |
| 32 | - foreach($request->params as $key=>$value) { |
|
| 33 | - $arrayForInput[$key] = $value; |
|
| 32 | + foreach ($request->params as $key=>$value) { |
|
| 33 | + $arrayForInput[$key] = $value; |
|
| 34 | 34 | } |
| 35 | 35 | $input = new ArrayInput($arrayForInput); |
| 36 | 36 | $command = $this->find($request->command); |