Test Failed
Pull Request — master (#92)
by Adam
04:34 queued 01:59
created
src/Connector/Connector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     {
61 61
         if (!isset($this->accessToken) || $this->accessToken->hasExpired()) {
62 62
             $cache = new FilesystemAdapter();
63
-            $accessToken = $cache->get('cloudapi-token', function (ItemInterface $item) {
63
+            $accessToken = $cache->get('cloudapi-token', function(ItemInterface $item) {
64 64
                 $item->expiresAfter(300);
65 65
                 return $this->provider->getAccessToken('client_credentials');
66 66
             });
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
         return $this->provider->getAuthenticatedRequest(
72 72
             $verb,
73
-            self::BASE_URI . $path,
73
+            self::BASE_URI.$path,
74 74
             $this->accessToken
75 75
         );
76 76
     }
Please login to merge, or discard this patch.