Test Failed
Push — develop ( 833877...64b6b0 )
by nguereza
02:36
created
src/Demo/Action/User/LoginAction.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,9 +103,9 @@
 block discarded – undo
103 103
                 $this->template,
104 104
                 'login',
105 105
                 [
106
-                   'name' => $name,
107
-                   'labelName' => $this->lang->tr('name'),
108
-                   'lang' => $this->lang->getLocale()
106
+                    'name' => $name,
107
+                    'labelName' => $this->lang->tr('name'),
108
+                    'lang' => $this->lang->getLocale()
109 109
                 ]
110 110
             );
111 111
         }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/AuthValidator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function setRules(): void
32 32
     {
33 33
         $this->validator->addRules('username', [
34
-           new NotEmpty(),
34
+            new NotEmpty(),
35 35
             new MinLength(3)
36 36
         ]);
37 37
     }
Please login to merge, or discard this patch.