Completed
Pull Request — master (#18)
by
unknown
13:45
created
src/Provider/Keycloak.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.