Passed
Pull Request — master (#92)
by Adam
02:10
created
src/Connector/Connector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         if (!isset($this->accessToken) || $this->accessToken->hasExpired()) {
69 69
             $cache = new FilesystemAdapter('acquia-php-sdk-v2');
70
-            $accessToken = $cache->get('cloudapi-token', function (ItemInterface $item) {
70
+            $accessToken = $cache->get('cloudapi-token', function(ItemInterface $item) {
71 71
                 $item->expiresAfter(300);
72 72
                 return $this->provider->getAccessToken('client_credentials');
73 73
             });
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
         return $this->provider->getAuthenticatedRequest(
79 79
             $verb,
80
-            self::BASE_URI . $path,
80
+            self::BASE_URI.$path,
81 81
             $this->accessToken
82 82
         );
83 83
     }
Please login to merge, or discard this patch.