Passed
Push — master ( b1dd44...aed86d )
by Adam
02:02
created
src/CloudApi/Connector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,18 +90,18 @@
 block discarded – undo
90 90
      */
91 91
     public function makeRequest(string $verb, string $path, array $query = [], array $options = [])
92 92
     {
93
-        if (! isset($this->accessToken)) {
93
+        if (!isset($this->accessToken)) {
94 94
             $this->accessToken = $this->provider->getAccessToken('client_credentials');
95 95
         }
96 96
 
97 97
         try {
98 98
             $request = $this->provider->getAuthenticatedRequest(
99 99
                 $verb,
100
-                self::BASE_URI . $path,
100
+                self::BASE_URI.$path,
101 101
                 $this->accessToken
102 102
             );
103 103
             $client = new GuzzleClient();
104
-            $response =  $client->send($request, $options);
104
+            $response = $client->send($request, $options);
105 105
         } catch (ClientException $e) {
106 106
             print $e->getMessage();
107 107
             $response = $e->getResponse();
Please login to merge, or discard this patch.