@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | protected function getAuthUrl($state) |
| 54 | 54 | { |
| 55 | - return $this->buildAuthUrlFromBase($this->baseUrl . '/oauth/' . $this->version . '/authorize', $state); |
|
| 55 | + return $this->buildAuthUrlFromBase($this->baseUrl.'/oauth/'.$this->version.'/authorize', $state); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | protected function getTokenUrl() |
| 78 | 78 | { |
| 79 | - return $this->baseUrl . '/oauth/' . $this->version . '/token'; |
|
| 79 | + return $this->baseUrl.'/oauth/'.$this->version.'/token'; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | protected function getUserByToken(AccessTokenInterface $token) |
| 102 | 102 | { |
| 103 | - $response = $this->getHttpClient()->get($this->baseUrl . '/rest/' . $this->version . '/passport/users/getInfo', [ |
|
| 103 | + $response = $this->getHttpClient()->get($this->baseUrl.'/rest/'.$this->version.'/passport/users/getInfo', [ |
|
| 104 | 104 | 'query' => [ |
| 105 | 105 | 'access_token' => $token->getToken(), |
| 106 | 106 | ], |