Completed
Pull Request — master (#53)
by
unknown
29:18 queued 14:19
created
src/Provider/Keycloak.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      */
180 180
     private function getBaseLogoutUrl()
181 181
     {
182
-        return $this->getBaseUrlWithRealm() . '/protocol/openid-connect/logout';
182
+        return $this->getBaseUrlWithRealm().'/protocol/openid-connect/logout';
183 183
     }
184 184
 
185 185
     /**
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
         if (!empty($data['error'])) {
238 238
             $error = $data['error'];
239 239
             if (isset($data['error_description'])) {
240
-                $error.=': '.$data['error_description'];
240
+                $error .= ': '.$data['error_description'];
241 241
             }
242 242
             throw new IdentityProviderException($error, $response->getStatusCode(), $data);
243 243
         }
Please login to merge, or discard this patch.