@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | $directory = Path::join(Path::getHomeDirectory(), '.acquia-php-sdk-v2'); |
| 98 | 98 | /** @infection-ignore-all */ |
| 99 | 99 | $cache = new FilesystemAdapter('cache', 300, $directory); |
| 100 | - $accessToken = $cache->get('cloudapi-token', function () { |
|
| 100 | + $accessToken = $cache->get('cloudapi-token', function() { |
|
| 101 | 101 | return $this->provider->getAccessToken('client_credentials'); |
| 102 | 102 | }); |
| 103 | 103 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | |
| 107 | 107 | return $this->provider->getAuthenticatedRequest( |
| 108 | 108 | $verb, |
| 109 | - $this->getBaseUri() . $path, |
|
| 109 | + $this->getBaseUri().$path, |
|
| 110 | 110 | $this->accessToken |
| 111 | 111 | ); |
| 112 | 112 | } |