@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | protected function getUri(): string |
| 62 | 62 | { |
| 63 | - return $this->getCredentials()->getBaseUrl() . '/json/v5/' . mb_strtolower($this->getServiceName()); |
|
| 63 | + return $this->getCredentials()->getBaseUrl().'/json/v5/'.mb_strtolower($this->getServiceName()); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | /** |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | $headers = [ |
| 72 | 72 | 'Content-Type' => 'application/json; charset=utf-8', |
| 73 | 73 | 'Accept' => 'application/json', |
| 74 | - 'Authorization' => 'Bearer ' . $this->getCredentials()->getToken(), |
|
| 74 | + 'Authorization' => 'Bearer '.$this->getCredentials()->getToken(), |
|
| 75 | 75 | 'Accept-Language' => $this->getCredentials()->getLanguage() |
| 76 | 76 | ]; |
| 77 | 77 | |