Passed
Push — master ( 927536...4ad0b4 )
by Chauncey
07:28
created
src/Charcoal/User/AuthToken.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @param DateTimeInterface|string|null $expiry The date/time at object's creation.
126
+     * @param string $expiry The date/time at object's creation.
127 127
      * @throws InvalidArgumentException If the date/time is invalid.
128 128
      * @return AuthToken Chainable
129 129
      */
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     }
155 155
 
156 156
     /**
157
-     * @param DateTimeInterface|string|null $created The date/time at object's creation.
157
+     * @param string $created The date/time at object's creation.
158 158
      * @throws InvalidArgumentException If the date/time is invalid.
159 159
      * @return AuthToken Chainable
160 160
      */
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     }
186 186
 
187 187
     /**
188
-     * @param DateTimeInterface|string|null $lastModified The last modified date/time.
188
+     * @param string $lastModified The last modified date/time.
189 189
      * @throws InvalidArgumentException If the date/time is invalid.
190 190
      * @return AuthToken Chainable
191 191
      */
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
     /**
304 304
      * @param mixed  $ident The auth-token identifier.
305 305
      * @param string $token The token key to validate against.
306
-     * @return mixed The user id.
306
+     * @return string The user id.
307 307
      */
308 308
     public function getUserId($ident, $token)
309 309
     {
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
     /**
314 314
      * @param mixed  $ident The auth-token identifier (username).
315 315
      * @param string $token The token to validate against.
316
-     * @return mixed The user id. An empty string if no token match.
316
+     * @return string The user id. An empty string if no token match.
317 317
      */
318 318
     public function getUsernameFromToken($ident, $token)
319 319
     {
Please login to merge, or discard this patch.
src/Charcoal/User/AbstractUser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
             $this->setLastLoginIp($ip);
455 455
         }
456 456
 
457
-        $this->update([ 'last_login_ip', 'last_login_date' ]);
457
+        $this->update(['last_login_ip', 'last_login_date']);
458 458
 
459 459
         $this->saveToSession();
460 460
 
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
         }
542 542
 
543 543
         if ($this->id()) {
544
-            $this->update([ 'password', 'last_password_date', 'last_password_ip' ]);
544
+            $this->update(['password', 'last_password_date', 'last_password_ip']);
545 545
         }
546 546
 
547 547
         return $this;
Please login to merge, or discard this patch.
src/Charcoal/User/ServiceProvider/AuthServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
              * @param  Container $container The Pimple DI Container.
32 32
              * @return Authenticator
33 33
              */
34
-            $container['authenticator'] = function (Container $container) {
34
+            $container['authenticator'] = function(Container $container) {
35 35
                 return new Authenticator([
36 36
                     'logger'        => $container['logger'],
37 37
                     'user_type'     => User::class,
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
              * @param  Container $container The Pimple DI container.
48 48
              * @return Authorizer
49 49
              */
50
-            $container['authorizer'] = function (Container $container) {
50
+            $container['authorizer'] = function(Container $container) {
51 51
                 return new Authorizer([
52 52
                     'logger'    => $container['logger'],
53 53
                     'acl'       => new Acl(),
Please login to merge, or discard this patch.
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.