Test Failed
Push — develop ( c5c862...2def8e )
by nguereza
02:43
created
src/Service/Provider/PaginationServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function register(): void
71 71
     {
72
-        $this->app->bind(UrlGeneratorInterface::class, function (ContainerInterface $app) {
72
+        $this->app->bind(UrlGeneratorInterface::class, function(ContainerInterface $app) {
73 73
             return new ServerRequestUrlGenerator(
74 74
                 $app->get(ServerRequestInterface::class),
75 75
                 'page'
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $this->app->bind(RendererInterface::class, BootstrapRenderer::class);
80 80
 
81
-        $this->app->bind(Pagination::class, function (ContainerInterface $app) {
81
+        $this->app->bind(Pagination::class, function(ContainerInterface $app) {
82 82
             $pagination = new Pagination(
83 83
                 $app->get(UrlGeneratorInterface::class),
84 84
                 $app->get(RendererInterface::class)
Please login to merge, or discard this patch.
src/Demo/Form/Validator/AuthValidator.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,12 +91,12 @@
 block discarded – undo
91 91
     public function setValidationRules(): void
92 92
     {
93 93
         $this->addRules('username', [
94
-           new NotEmpty(),
95
-           new MinLength(3)
94
+            new NotEmpty(),
95
+            new MinLength(3)
96 96
         ]);
97 97
 
98 98
         $this->addRules('password', [
99
-           new NotEmpty(),
99
+            new NotEmpty(),
100 100
         ]);
101 101
     }
102 102
 }
Please login to merge, or discard this 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 AuthValidator
58 58
  * @package Platine\Framework\Demo\Form\Validator
59 59
  */
60
-class AuthValidator extends AbstractValidator
61
-{
60
+class AuthValidator extends AbstractValidator {
62 61
     /**
63 62
      * The parameter instance
64 63
      * @var AuthParam
@@ -70,8 +69,7 @@  discard block
 block discarded – undo
70 69
      * @param AuthParam $param
71 70
      * @param Lang $lang
72 71
      */
73
-    public function __construct(AuthParam $param, Lang $lang)
74
-    {
72
+    public function __construct(AuthParam $param, Lang $lang) {
75 73
         parent::__construct($lang);
76 74
         $this->param = $param;
77 75
     }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/RoleValidator.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,12 +92,12 @@
 block discarded – undo
92 92
     public function setValidationRules(): void
93 93
     {
94 94
         $this->addRules('name', [
95
-           new NotEmpty(),
96
-           new MinLength(2)
95
+            new NotEmpty(),
96
+            new MinLength(2)
97 97
         ]);
98 98
 
99 99
         $this->addRules('description', [
100
-           new MinLength(3)
100
+            new MinLength(3)
101 101
         ]);
102 102
     }
103 103
 }
Please login to merge, or discard this 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 RoleValidator
58 58
  * @package Platine\Framework\Demo\Form\Validator
59 59
  */
60
-class RoleValidator extends AbstractValidator
61
-{
60
+class RoleValidator extends AbstractValidator {
62 61
 
63 62
     /**
64 63
      * The parameter instance
@@ -71,8 +70,7 @@  discard block
 block discarded – undo
71 70
      * @param RoleParam $param
72 71
      * @param Lang $lang
73 72
      */
74
-    public function __construct(RoleParam $param, Lang $lang)
75
-    {
73
+    public function __construct(RoleParam $param, Lang $lang) {
76 74
         parent::__construct($lang);
77 75
         $this->param = $param;
78 76
     }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/UserValidator.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -100,37 +100,37 @@
 block discarded – undo
100 100
     public function setValidationRules(): void
101 101
     {
102 102
         $this->addRules('username', [
103
-           new NotEmpty(),
104
-           new MinLength(3),
105
-           new AlphaDash()
103
+            new NotEmpty(),
104
+            new MinLength(3),
105
+            new AlphaDash()
106 106
         ]);
107 107
 
108 108
         $this->addRules('lastname', [
109
-           new NotEmpty(),
110
-           new MinLength(3)
109
+            new NotEmpty(),
110
+            new MinLength(3)
111 111
         ]);
112 112
 
113 113
         $this->addRules('firstname', [
114
-           new NotEmpty(),
115
-           new MinLength(3)
114
+            new NotEmpty(),
115
+            new MinLength(3)
116 116
         ]);
117 117
 
118 118
         $this->addRules('status', [
119
-           new NotEmpty(),
120
-           new InList(['A', 'D'])
119
+            new NotEmpty(),
120
+            new InList(['A', 'D'])
121 121
         ]);
122 122
 
123 123
         $this->addRules('email', [
124
-           new NotEmpty(),
125
-           new Email()
124
+            new NotEmpty(),
125
+            new Email()
126 126
         ]);
127 127
 
128 128
         $this->addRules('role', [
129
-           new MinLength(3)
129
+            new MinLength(3)
130 130
         ]);
131 131
 
132 132
         $this->addRules('password', [
133
-           new MinLength(5),
133
+            new MinLength(5),
134 134
         ]);
135 135
     }
136 136
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@  discard block
 block discarded – undo
60 60
  * @class UserValidator
61 61
  * @package Platine\Framework\Demo\Form\Validator
62 62
  */
63
-class UserValidator extends AbstractValidator
64
-{
63
+class UserValidator extends AbstractValidator {
65 64
 
66 65
     /**
67 66
      * The parameter instance
@@ -74,8 +73,7 @@  discard block
 block discarded – undo
74 73
      * @param UserParam $param
75 74
      * @param Lang $lang
76 75
      */
77
-    public function __construct(UserParam $param, Lang $lang)
78
-    {
76
+    public function __construct(UserParam $param, Lang $lang) {
79 77
         parent::__construct($lang);
80 78
         $this->param = $param;
81 79
     }
Please login to merge, or discard this patch.
src/Demo/Form/Validator/PermissionValidator.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -94,18 +94,18 @@
 block discarded – undo
94 94
     public function setValidationRules(): void
95 95
     {
96 96
         $this->addRules('code', [
97
-           new NotEmpty(),
98
-           new MinLength(2),
99
-           new AlphaDash()
97
+            new NotEmpty(),
98
+            new MinLength(2),
99
+            new AlphaDash()
100 100
         ]);
101 101
 
102 102
         $this->addRules('description', [
103
-           new NotEmpty(),
104
-           new MinLength(3)
103
+            new NotEmpty(),
104
+            new MinLength(3)
105 105
         ]);
106 106
 
107 107
         $this->addRules('depend', [
108
-           new MinLength(2)
108
+            new MinLength(2)
109 109
         ]);
110 110
     }
111 111
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
58 58
  * @class PermissionValidator
59 59
  * @package Platine\Framework\Demo\Form\Validator
60 60
  */
61
-class PermissionValidator extends AbstractValidator
62
-{
61
+class PermissionValidator extends AbstractValidator {
63 62
 
64 63
     /**
65 64
      * The parameter instance
@@ -72,8 +71,7 @@  discard block
 block discarded – undo
72 71
      * @param PermissionParam $param
73 72
      * @param Lang $lang
74 73
      */
75
-    public function __construct(PermissionParam $param, Lang $lang)
76
-    {
74
+    public function __construct(PermissionParam $param, Lang $lang) {
77 75
         parent::__construct($lang);
78 76
         $this->param = $param;
79 77
     }
Please login to merge, or discard this patch.
src/Form/Validator/AbstractValidator.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,14 +54,12 @@
 block discarded – undo
54 54
  * @class AbstractValidator
55 55
  * @package Platine\Framework\Form\Validator
56 56
  */
57
-abstract class AbstractValidator extends Validator
58
-{
57
+abstract class AbstractValidator extends Validator {
59 58
     /**
60 59
      * Create new instance
61 60
      * @param Lang $lang
62 61
      */
63
-    public function __construct(Lang $lang)
64
-    {
62
+    public function __construct(Lang $lang) {
65 63
         parent::__construct($lang);
66 64
     }
67 65
 
Please login to merge, or discard this patch.