Test Failed
Pull Request — master (#3)
by Chauncey
02:00
created
src/Charcoal/User/AuthAwareTrait.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -121,11 +121,11 @@
 block discarded – undo
121 121
         return $this->authorizer;
122 122
     }
123 123
 
124
-     /**
125
-      * @param string[]|string|null $permissions The list of required permissions.
126
-      * @throws InvalidArgumentException If the permissions are not an array or a comma-separated string.
127
-      * @return self
128
-      */
124
+        /**
125
+         * @param string[]|string|null $permissions The list of required permissions.
126
+         * @throws InvalidArgumentException If the permissions are not an array or a comma-separated string.
127
+         * @return self
128
+         */
129 129
     protected function setRequiredAclPermissions($permissions)
130 130
     {
131 131
         if ($permissions === null || !$permissions) {
Please login to merge, or discard this patch.
src/Charcoal/User/AbstractAuthToken.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,8 +214,8 @@
 block discarded – undo
214 214
         if (!$this->source()->tableExists()) {
215 215
             $this->logger->warning(sprintf(
216 216
                 '[AuthToken] Invalid login attempt from token "%s": The table "%s" does not exist.',
217
-                 $ident,
218
-                 $this->source()->table()
217
+                    $ident,
218
+                    $this->source()->table()
219 219
             ));
220 220
             return null;
221 221
         }
Please login to merge, or discard this patch.