Test Failed
Push — develop ( 64b6b0...ddb817 )
by nguereza
02:24
created
src/Demo/Action/User/LoginAction.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
                 $this->template,
80 80
                 'user/login',
81 81
                 [
82
-                   'param' => $formParam
82
+                    'param' => $formParam
83 83
                 ]
84 84
             );
85 85
         }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 $this->template,
92 92
                 'user/login',
93 93
                 [
94
-                   'param' => $formParam
94
+                    'param' => $formParam
95 95
                 ]
96 96
             );
97 97
         }
Please login to merge, or discard this patch.
src/Demo/Action/User/CreateAction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
                 $this->template,
79 79
                 'user/create',
80 80
                 [
81
-                   'param' => $formParam
81
+                    'param' => $formParam
82 82
                 ]
83 83
             );
84 84
         }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/AuthValidator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
     public function setRules(): void
33 33
     {
34 34
         $this->validator->addRules('username', [
35
-           new NotEmpty(),
36
-           new MinLength(3)
35
+            new NotEmpty(),
36
+            new MinLength(3)
37 37
         ]);
38 38
 
39 39
         $this->validator->addRules('password', [
40
-           new NotEmpty(),
40
+            new NotEmpty(),
41 41
         ]);
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/UserValidator.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -38,30 +38,30 @@
 block discarded – undo
38 38
     public function setRules(): void
39 39
     {
40 40
         $this->validator->addRules('username', [
41
-           new NotEmpty(),
42
-           new MinLength(3)
41
+            new NotEmpty(),
42
+            new MinLength(3)
43 43
         ]);
44 44
 
45 45
         $this->validator->addRules('lastname', [
46
-           new NotEmpty(),
47
-           new MinLength(3)
46
+            new NotEmpty(),
47
+            new MinLength(3)
48 48
         ]);
49 49
 
50 50
         $this->validator->addRules('firstname', [
51
-           new NotEmpty(),
52
-           new MinLength(3)
51
+            new NotEmpty(),
52
+            new MinLength(3)
53 53
         ]);
54 54
 
55 55
         $this->validator->addRules('age', [
56
-           new NotEmpty(),
57
-           new Number(),
58
-           new Min(0),
59
-           new Max(100),
56
+            new NotEmpty(),
57
+            new Number(),
58
+            new Min(0),
59
+            new Max(100),
60 60
         ]);
61 61
 
62 62
         $this->validator->addRules('password', [
63
-           new NotEmpty(),
64
-           new MinLength(5),
63
+            new NotEmpty(),
64
+            new MinLength(5),
65 65
         ]);
66 66
     }
67 67
 }
Please login to merge, or discard this patch.