@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function commandToRequestTransformer() |
| 37 | 37 | { |
| 38 | - return function (CommandInterface $command) { |
|
| 38 | + return function(CommandInterface $command) { |
|
| 39 | 39 | if (!$this->service->hasOperation($command->getName())) { |
| 40 | 40 | throw new CommandException(sprintf( |
| 41 | 41 | 'Command "%s" not found', |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function responseToResultTransformer() |
| 91 | 91 | { |
| 92 | - return function ( |
|
| 92 | + return function( |
|
| 93 | 93 | ResponseInterface $response, |
| 94 | 94 | RequestInterface $request, |
| 95 | 95 | CommandInterface $command |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | |
| 115 | 115 | public function badResponseExceptionParser() |
| 116 | 116 | { |
| 117 | - return function (CommandInterface $command, GuzzleBadResponseException $e) { |
|
| 117 | + return function(CommandInterface $command, GuzzleBadResponseException $e) { |
|
| 118 | 118 | $operation = $this->service->getOperation($command->getName()); |
| 119 | 119 | |
| 120 | 120 | return $this->processResponseError( |