Passed
Push — master ( 59a2ef...64aade )
by Hector Luis
02:16
created
src/Gateway/Implementations/Client/Rest/Guzzle.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@
 block discarded – undo
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
             );
Please login to merge, or discard this patch.