Passed
Pull Request — master (#285)
by Adam
03:11 queued 01:23
created
src/Connector/Connector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             /** @infection-ignore-all */
100 100
             $cache = new FilesystemAdapter('cache', 300, $directory);
101 101
             try {
102
-                $accessToken = $cache->get('cloudapi-token', function () {
102
+                $accessToken = $cache->get('cloudapi-token', function() {
103 103
                     return $this->provider->getAccessToken('client_credentials');
104 104
                 });
105 105
             } catch (InvalidArgumentException $e) {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
         return $this->provider->getAuthenticatedRequest(
113 113
             $verb,
114
-            $this->getBaseUri() . $path,
114
+            $this->getBaseUri().$path,
115 115
             $this->accessToken
116 116
         );
117 117
     }
Please login to merge, or discard this patch.