Passed
Push — master ( dc4f1f...6b2c4c )
by Gabriel
02:50
created
src/RequestHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $this->accessToken = $accessToken;
18 18
         $this->apiUrl = $apiUrl;
19
-        $this->client = new Client(['base_uri' => $this->apiUrl . '/']);
19
+        $this->client = new Client(['base_uri' => $this->apiUrl.'/']);
20 20
     }
21 21
 
22 22
     public function getAccessToken(): string
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function setApiUrl(string $apiUrl)
38 38
     {
39 39
         $this->apiUrl = $apiUrl;
40
-        $this->client = new Client(['base_uri' => $apiUrl . '/']);
40
+        $this->client = new Client(['base_uri' => $apiUrl.'/']);
41 41
     }
42 42
 
43 43
     private function handleException(ResponseInterface $response)
Please login to merge, or discard this patch.