Completed
Pull Request — master (#53)
by
unknown
03:10
created
src/Provider/Keycloak.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
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
     /**
@@ -202,8 +202,8 @@  discard block
 block discarded – undo
202 202
     {
203 203
         if (!empty($data['error'])) {
204 204
             $error = $data['error'];
205
-            if(isset($data['error_description'])){
206
-                $error.=': '.$data['error_description'];
205
+            if (isset($data['error_description'])) {
206
+                $error .= ': '.$data['error_description'];
207 207
             }
208 208
             throw new IdentityProviderException($error, $response->getStatusCode(), $data);
209 209
         }
Please login to merge, or discard this patch.