Test Failed
Push — develop ( 833877...64b6b0 )
by nguereza
02:36
created
src/App/Application.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -161,9 +161,9 @@
 block discarded – undo
161 161
     }
162 162
 
163 163
         /**
164
-     * Boot the application
165
-     * @return void
166
-     */
164
+         * Boot the application
165
+         * @return void
166
+         */
167 167
     public function boot(): void
168 168
     {
169 169
         if ($this->booted) {
Please login to merge, or discard this patch.
src/Demo/Template/LangTag.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
     protected string $value;
28 28
 
29 29
     /**
30
-    * {@inheritdoc}
31
-    */
30
+     * {@inheritdoc}
31
+     */
32 32
     public function __construct(string $markup, &$tokens, Parser $parser)
33 33
     {
34 34
         $lexer = new Lexer('/' . Token::QUOTED_FRAGMENT . '/');
Please login to merge, or discard this patch.
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.