@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | /** @infection-ignore-all */ |
100 | 100 | $cache = new FilesystemAdapter('cache', 300, $directory); |
101 | 101 | try { |
102 | - $accessToken = $cache->get('cloudapi-token', function () { |
|
102 | + $accessToken = $cache->get('cloudapi-token', function() { |
|
103 | 103 | return $this->provider->getAccessToken('client_credentials'); |
104 | 104 | }); |
105 | 105 | } catch (InvalidArgumentException $e) { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | |
112 | 112 | return $this->provider->getAuthenticatedRequest( |
113 | 113 | $verb, |
114 | - $this->getBaseUri() . $path, |
|
114 | + $this->getBaseUri().$path, |
|
115 | 115 | $this->accessToken |
116 | 116 | ); |
117 | 117 | } |