Completed
Push — master ( 7ab9ab...b0b697 )
by Chauncey
12:29
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/AbstractUser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-     * @param  string|DateTimeInterface|null $lastLoginDate The last login date.
223
+     * @param  string $lastLoginDate The last login date.
224 224
      * @throws InvalidArgumentException If the ts is not a valid date/time.
225 225
      * @return self
226 226
      */
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @param  string|DateTimeInterface|null $lastPasswordDate The last password date.
302
+     * @param  string $lastPasswordDate The last password date.
303 303
      * @throws InvalidArgumentException If the passsword date is not a valid DateTime.
304 304
      * @return self
305 305
      */
Please login to merge, or discard this patch.
src/Charcoal/User/AuthToken.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-     * @param DateTimeInterface|string|null $expiry The date/time at object's creation.
124
+     * @param string $expiry The date/time at object's creation.
125 125
      * @throws InvalidArgumentException If the date/time is invalid.
126 126
      * @return self
127 127
      */
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     }
153 153
 
154 154
     /**
155
-     * @param DateTimeInterface|string|null $created The date/time at object's creation.
155
+     * @param string $created The date/time at object's creation.
156 156
      * @throws InvalidArgumentException If the date/time is invalid.
157 157
      * @return self
158 158
      */
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     }
184 184
 
185 185
     /**
186
-     * @param DateTimeInterface|string|null $lastModified The last modified date/time.
186
+     * @param string $lastModified The last modified date/time.
187 187
      * @throws InvalidArgumentException If the date/time is invalid.
188 188
      * @return self
189 189
      */
Please login to merge, or discard this patch.
src/Charcoal/User/ServiceProvider/AuthServiceProvider.php 1 patch
Spacing   +3 added lines, -3 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'       => $container['authorizer/acl'],
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             /**
61 61
              * @return Acl
62 62
              */
63
-            $container['authorizer/acl'] = function () {
63
+            $container['authorizer/acl'] = function() {
64 64
                 return new Acl();
65 65
             };
66 66
         }
Please login to merge, or discard this patch.