@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | private function getBaseLogoutUrl() |
156 | 156 | { |
157 | - return $this->getBaseUrlWithRealm() . '/protocol/openid-connect/logout'; |
|
157 | + return $this->getBaseUrlWithRealm().'/protocol/openid-connect/logout'; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | /** |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | try { |
273 | 273 | $this->encryptionKey = file_get_contents($encryptionKeyPath); |
274 | 274 | } catch (\Throwable $e) { |
275 | - $message = 'Could not find the encryption key path: "'. $encryptionKeyPath . '"'; |
|
275 | + $message = 'Could not find the encryption key path: "'.$encryptionKeyPath.'"'; |
|
276 | 276 | throw new EncryptionKeyPathNotFoundException($message, 0, $e); |
277 | 277 | } |
278 | 278 |