Passed
Push — master ( 57e01c...c1cad0 )
by Dane
02:15
created
src/Connector/Connector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
             $directory = sprintf('%s%s%s', Path::getHomeDirectory(), \DIRECTORY_SEPARATOR, '.acquia-php-sdk-v2');
80 80
             /** @infection-ignore-all */
81 81
             $cache = new FilesystemAdapter('cache', 300, $directory);
82
-            $accessToken = $cache->get('cloudapi-token', function () {
82
+            $accessToken = $cache->get('cloudapi-token', function() {
83 83
                 return $this->provider->getAccessToken('client_credentials');
84 84
             });
85 85
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
         return $this->provider->getAuthenticatedRequest(
90 90
             $verb,
91
-            $this->baseUri . $path,
91
+            $this->baseUri.$path,
92 92
             $this->accessToken
93 93
         );
94 94
     }
Please login to merge, or discard this patch.