@@ -43,13 +43,13 @@ |
||
43 | 43 | ] |
44 | 44 | ); |
45 | 45 | $promise->then( |
46 | - function (ResponseInterface $response) use (&$result) { |
|
46 | + function(ResponseInterface $response) use (&$result) { |
|
47 | 47 | $result[ResponderInterface::CONTENT_KEY] = $response->getBody()->getContents(); |
48 | 48 | $result[ResponderInterface::SUCCESS_KEY] = true; |
49 | 49 | $result[ResponderInterface::MESSAGE_KEY] = 'Response correctly received'; // Perhaps normalize this message |
50 | 50 | return $result; |
51 | 51 | }, |
52 | - function (RuntimeException $exception) { |
|
52 | + function(RuntimeException $exception) { |
|
53 | 53 | // Missing implementation |
54 | 54 | } |
55 | 55 | ); |