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