@@ -79,7 +79,7 @@ discard block |
||
| 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 |
||
| 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 | } |