@@ -49,10 +49,10 @@ |
||
| 49 | 49 | public $encryptionKey = null; |
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | - * Keycloak version. |
|
| 53 | - * |
|
| 54 | - * @var string |
|
| 55 | - */ |
|
| 52 | + * Keycloak version. |
|
| 53 | + * |
|
| 54 | + * @var string |
|
| 55 | + */ |
|
| 56 | 56 | public $version = null; |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | */ |
| 180 | 180 | private function getBaseLogoutUrl() |
| 181 | 181 | { |
| 182 | - return $this->getBaseUrlWithRealm() . '/protocol/openid-connect/logout'; |
|
| 182 | + return $this->getBaseUrlWithRealm().'/protocol/openid-connect/logout'; |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | if (!empty($data['error'])) { |
| 238 | 238 | $error = $data['error']; |
| 239 | 239 | if (isset($data['error_description'])) { |
| 240 | - $error.=': '.$data['error_description']; |
|
| 240 | + $error .= ': '.$data['error_description']; |
|
| 241 | 241 | } |
| 242 | 242 | throw new IdentityProviderException($error, $response->getStatusCode(), $data); |
| 243 | 243 | } |