@@ -73,8 +73,8 @@ |
||
73 | 73 | |
74 | 74 | $token = $this->provider->getAccessToken('authorization_code', ['code' => 'mock_authorization_code']); |
75 | 75 | |
76 | - $providerAuthorizationUrl = $this->provider->oAuthBaseUrl . '/auth'; |
|
77 | - $providerAccessTokenUrl = $this->provider->oAuthBaseUrl . '/token'; |
|
76 | + $providerAuthorizationUrl = $this->provider->oAuthBaseUrl.'/auth'; |
|
77 | + $providerAccessTokenUrl = $this->provider->oAuthBaseUrl.'/token'; |
|
78 | 78 | $providerResourceOwnerUrl = 'https://api.chaster.app/auth/profile'; |
79 | 79 | |
80 | 80 | $this->assertEquals($providerAuthorizationUrl, $this->provider->getBaseAuthorizationUrl()); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function getBaseAccessTokenUrl(array $params): string |
43 | 43 | { |
44 | - return $this->baseAuthUrl . '/token'; |
|
44 | + return $this->baseAuthUrl.'/token'; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function getBaseAuthorizationUrl(): string |
53 | 53 | { |
54 | - return $this->baseAuthUrl . '/auth'; |
|
54 | + return $this->baseAuthUrl.'/auth'; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function getResourceOwnerDetailsUrl(AccessToken $token): string |
67 | 67 | { |
68 | - return $this->apiDomain . '/auth/profile'; |
|
68 | + return $this->apiDomain.'/auth/profile'; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |