Completed
Pull Request — master (#85)
by
unknown
10:53
created
src/Provider/Keycloak.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
     public const METHOD_POST = 'POST';
30 30
 
31 31
     /**
32
-      * Keycloak version.
33
-      *
34
-      * @var string
35
-      */
32
+     * Keycloak version.
33
+     *
34
+     * @var string
35
+     */
36 36
     public $version = null;
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
      */
322 322
     public function usesEncryption(): bool
323 323
     {
324
-        return (bool)$this->encryptionAlgorithm && $this->encryptionKey;
324
+        return (bool) $this->encryptionAlgorithm && $this->encryptionKey;
325 325
     }
326 326
 
327 327
     public function getCertificatePublicUrl(string $realm): string
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
         }
411 411
     }
412 412
 
413
-    public function refreshTokenIfExpired(AccessToken &$token): void
413
+    public function refreshTokenIfExpired(AccessToken & $token): void
414 414
     {
415 415
         if ($token->hasExpired()) {
416 416
             $token = $this->getAccessToken(
Please login to merge, or discard this patch.