Completed
Pull Request — master (#7)
by
unknown
03:35
created
src/Provider/Keycloak.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,7 +235,7 @@
 block discarded – undo
235 235
     {
236 236
         $headers = parent::getAuthorizationHeaders($token);
237 237
         if ($token != null) {
238
-            $headers['Authorization'] = 'Bearer ' . $token;
238
+            $headers['Authorization'] = 'Bearer '.$token;
239 239
         }
240 240
         return $headers;
241 241
     }
Please login to merge, or discard this patch.
src/Provider/KeycloakEntitlements.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @return bool
71 71
      */
72 72
     public function hasResourceSetId($id) {
73
-        if (! isset($this->data->authorization->permissions)) {
73
+        if (!isset($this->data->authorization->permissions)) {
74 74
             return false;
75 75
         }
76 76
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @return bool
91 91
      */
92 92
     public function hasResourceSetName($name) {
93
-        if (! isset($this->data->authorization->permissions)) {
93
+        if (!isset($this->data->authorization->permissions)) {
94 94
             return false;
95 95
         }
96 96
 
Please login to merge, or discard this patch.