@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | { |
61 | 61 | if (!isset($this->accessToken) || $this->accessToken->hasExpired()) { |
62 | 62 | $cache = new FilesystemAdapter(); |
63 | - $accessToken = $cache->get('cloudapi-token', function (ItemInterface $item) { |
|
63 | + $accessToken = $cache->get('cloudapi-token', function(ItemInterface $item) { |
|
64 | 64 | $item->expiresAfter(300); |
65 | 65 | return $this->provider->getAccessToken('client_credentials'); |
66 | 66 | }); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | return $this->provider->getAuthenticatedRequest( |
72 | 72 | $verb, |
73 | - self::BASE_URI . $path, |
|
73 | + self::BASE_URI.$path, |
|
74 | 74 | $this->accessToken |
75 | 75 | ); |
76 | 76 | } |