@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | */ |
| 153 | 153 | private function getBaseLogoutUrl() |
| 154 | 154 | { |
| 155 | - return $this->getBaseUrlWithRealm() . '/protocol/openid-connect/logout'; |
|
| 155 | + return $this->getBaseUrlWithRealm().'/protocol/openid-connect/logout'; |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | if (!empty($data['error'])) { |
| 204 | 204 | $error = $data['error']; |
| 205 | 205 | if (isset($data['error_description'])) { |
| 206 | - $error.=': '.$data['error_description']; |
|
| 206 | + $error .= ': '.$data['error_description']; |
|
| 207 | 207 | } |
| 208 | 208 | throw new IdentityProviderException($error, 0, $data); |
| 209 | 209 | } |
@@ -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 | /** |