Test Failed
Push — develop ( 12e168...c96bee )
by nguereza
02:42
created
src/Kernel/BaseKernel.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
  * class BaseKernel
54 54
  * @package Platine\Framework\Kernel
55 55
  */
56
-class BaseKernel
57
-{
56
+class BaseKernel {
58 57
 
59 58
     /**
60 59
      * Application instance
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
      * Create new instance
67 66
      * @param Application $app
68 67
      */
69
-    public function __construct(Application $app)
70
-    {
68
+    public function __construct(Application $app) {
71 69
         $this->app = $app;
72 70
     }
73 71
 
Please login to merge, or discard this patch.
src/Kernel/HttpKernel.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,8 +63,7 @@  discard block
 block discarded – undo
63 63
  * class HttpKernel
64 64
  * @package Platine\Framework\Kernel
65 65
  */
66
-class HttpKernel extends BaseKernel implements RequestHandlerInterface
67
-{
66
+class HttpKernel extends BaseKernel implements RequestHandlerInterface {
68 67
 
69 68
     /**
70 69
      * The router instance
@@ -83,8 +82,7 @@  discard block
 block discarded – undo
83 82
      * @param Application $app
84 83
      * @param Router $router
85 84
      */
86
-    public function __construct(Application $app, Router $router)
87
-    {
85
+    public function __construct(Application $app, Router $router) {
88 86
         parent::__construct($app);
89 87
         $this->router = $router;
90 88
     }
Please login to merge, or discard this patch.
src/Kernel/ConsoleKernel.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * class ConsoleKernel
58 58
  * @package Platine\Framework\Kernel
59 59
  */
60
-class ConsoleKernel extends BaseKernel
61
-{
60
+class ConsoleKernel extends BaseKernel {
62 61
 
63 62
     protected ConsoleApp $console;
64 63
 
@@ -79,8 +78,7 @@  discard block
 block discarded – undo
79 78
      * @param Application $app
80 79
      * @param ConsoleApp $console
81 80
      */
82
-    public function __construct(Application $app, ConsoleApp $console)
83
-    {
81
+    public function __construct(Application $app, ConsoleApp $console) {
84 82
         parent::__construct($app);
85 83
         $this->console = $console;
86 84
     }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/AbstractValidator.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Platine\Validator\Validator;
6 6
 
7
-abstract class AbstractValidator
8
-{
7
+abstract class AbstractValidator {
9 8
     /**
10 9
      * The validator instance
11 10
      * @var Validator
@@ -22,8 +21,7 @@  discard block
 block discarded – undo
22 21
      * Create new instance
23 22
      * @param Validator|null $validator
24 23
      */
25
-    public function __construct(?Validator $validator = null)
26
-    {
24
+    public function __construct(?Validator $validator = null) {
27 25
         $this->validator = $validator ?? new Validator();
28 26
     }
29 27
 
Please login to merge, or discard this patch.
src/Demo/Form/Validator/AuthValidator.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@  discard block
 block discarded – undo
7 7
 use Platine\Validator\Rule\NotEmpty;
8 8
 use Platine\Validator\Validator;
9 9
 
10
-class AuthValidator extends AbstractValidator
11
-{
10
+class AuthValidator extends AbstractValidator {
12 11
 
13 12
     protected AuthParam $param;
14 13
 
@@ -17,8 +16,7 @@  discard block
 block discarded – undo
17 16
      * @param AuthParam $param
18 17
      * @param Validator|null $validator
19 18
      */
20
-    public function __construct(AuthParam $param, ?Validator $validator = null)
21
-    {
19
+    public function __construct(AuthParam $param, ?Validator $validator = null) {
22 20
         parent::__construct($validator);
23 21
         $this->param = $param;
24 22
     }
Please login to merge, or discard this 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/Action/User/LoginAction.php 2 patches
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.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@
 block discarded – undo
21 21
  *
22 22
  * @author tony
23 23
  */
24
-class LoginAction implements RequestHandlerInterface
25
-{
24
+class LoginAction implements RequestHandlerInterface {
26 25
 
27 26
     protected LoggerInterface $logger;
28 27
     protected Session $session;
Please login to merge, or discard this patch.
src/Demo/Action/User/CreateAction.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@
 block discarded – undo
21 21
  *
22 22
  * @author tony
23 23
  */
24
-class CreateAction implements RequestHandlerInterface
25
-{
24
+class CreateAction implements RequestHandlerInterface {
26 25
 
27 26
     protected LoggerInterface $logger;
28 27
     protected Session $session;
Please login to merge, or discard this 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/create',
81 81
                 [
82
-                   'param' => $formParam
82
+                    'param' => $formParam
83 83
                 ]
84 84
             );
85 85
         }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                 $this->template,
108 108
                 'user/create',
109 109
                 [
110
-                   'param' => $formParam
110
+                    'param' => $formParam
111 111
                 ]
112 112
             );
113 113
         }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/UserValidator.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,8 +10,7 @@  discard block
 block discarded – undo
10 10
 use Platine\Validator\Rule\Number;
11 11
 use Platine\Validator\Validator;
12 12
 
13
-class UserValidator extends AbstractValidator
14
-{
13
+class UserValidator extends AbstractValidator {
15 14
 
16 15
     protected UserParam $param;
17 16
 
@@ -20,8 +19,7 @@  discard block
 block discarded – undo
20 19
      * @param UserParam $param
21 20
      * @param Validator|null $validator
22 21
      */
23
-    public function __construct(UserParam $param, ?Validator $validator = null)
24
-    {
22
+    public function __construct(UserParam $param, ?Validator $validator = null) {
25 23
         parent::__construct($validator);
26 24
         $this->param = $param;
27 25
     }
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -39,30 +39,30 @@
 block discarded – undo
39 39
     public function setRules(): void
40 40
     {
41 41
         $this->validator->addRules('username', [
42
-           new NotEmpty(),
43
-           new MinLength(3),
42
+            new NotEmpty(),
43
+            new MinLength(3),
44 44
             new AlphaDash()
45 45
         ]);
46 46
 
47 47
         $this->validator->addRules('lastname', [
48
-           new NotEmpty(),
49
-           new MinLength(3)
48
+            new NotEmpty(),
49
+            new MinLength(3)
50 50
         ]);
51 51
 
52 52
         $this->validator->addRules('firstname', [
53
-           new NotEmpty(),
54
-           new MinLength(3)
53
+            new NotEmpty(),
54
+            new MinLength(3)
55 55
         ]);
56 56
 
57 57
         $this->validator->addRules('age', [
58
-           new NotEmpty(),
59
-           new Number(),
60
-           new Min(0),
61
-           new Max(100),
58
+            new NotEmpty(),
59
+            new Number(),
60
+            new Min(0),
61
+            new Max(100),
62 62
         ]);
63 63
 
64 64
         $this->validator->addRules('password', [
65
-           new MinLength(5),
65
+            new MinLength(5),
66 66
         ]);
67 67
     }
68 68
 }
Please login to merge, or discard this patch.
src/Demo/Form/Param/AuthParam.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Platine\Framework\Demo\Form\Param;
4 4
 
5
-class AuthParam extends BaseParam
6
-{
5
+class AuthParam extends BaseParam {
7 6
     protected string $username = '';
8 7
     protected string $password = '';
9 8
 
Please login to merge, or discard this patch.