Passed
Push — master ( 726ef2...00fb0a )
by Jeroen
02:13
created
src/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $stack = HandlerStack::create();
37 37
 
38 38
         $stack->push(Middleware::mapRequest(
39
-            function (RequestInterface $request) use ($apikey) {
39
+            function(RequestInterface $request) use ($apikey) {
40 40
                 return $request->withUri(
41 41
                     Uri::withQueryValue(
42 42
                         $request->getUri(), 'apikey', $apikey
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         ), 'apikey');
47 47
 
48 48
         $stack->push(Middleware::mapResponse(
49
-            function (ResponseInterface $response) {
49
+            function(ResponseInterface $response) {
50 50
 
51 51
                 $body = json_decode((string)$response->getBody(), true);
52 52
 
Please login to merge, or discard this patch.