Passed
Push — master ( fce0f0...c759e6 )
by Michaël
04:13 queued 13s
created
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         $this->clientId     = $clientId;
74 74
         $this->clientSecret = $clientSecret;
75 75
         $this->redirectUrl  = $redirectUrl;
76
-        $this->httpClient   = new HttpClient(['base_uri' => self::BASE_URI]);
76
+        $this->httpClient   = new HttpClient([ 'base_uri' => self::BASE_URI ]);
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
src/Exception/ApiException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
             $body = (string) $e->getResponse()->getBody();
26 26
             $json = json_decode($body, true);
27 27
 
28
-            if (isset($json['message'])) {
29
-                $message = $json['message'];
28
+            if (isset($json[ 'message' ])) {
29
+                $message = $json[ 'message' ];
30 30
             }
31 31
         }
32 32
 
Please login to merge, or discard this patch.