Passed
Push — master ( 11848a...152feb )
by nguereza
13:16 queued 12s
created
app/Provider/ConsoleServiceProvider.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class ConsoleServiceProvider
56 56
  * @package Platine\App\Provider
57 57
  */
58
-class ConsoleServiceProvider extends ServiceProvider
59
-{
58
+class ConsoleServiceProvider extends ServiceProvider {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      */
Please login to merge, or discard this patch.
app/Provider/AppServiceProvider.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
  * @class AppServiceProvider
57 57
  * @package Platine\App\Provider
58 58
  */
59
-class AppServiceProvider extends ServiceProvider
60
-{
59
+class AppServiceProvider extends ServiceProvider {
61 60
     /**
62 61
      * {@inheritdoc}
63 62
      */
Please login to merge, or discard this patch.
app/Param/UserParam.php 2 patches
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -15,64 +15,64 @@  discard block
 block discarded – undo
15 15
 class UserParam extends BaseParam
16 16
 {
17 17
     /**
18
-    * The username field
19
-    * @var string
20
-    */
18
+     * The username field
19
+     * @var string
20
+     */
21 21
     protected string $username;
22 22
 
23 23
     /**
24
-    * The lastname field
25
-    * @var string
26
-    */
24
+     * The lastname field
25
+     * @var string
26
+     */
27 27
     protected string $lastname;
28 28
 
29 29
     /**
30
-    * The firstname field
31
-    * @var string
32
-    */
30
+     * The firstname field
31
+     * @var string
32
+     */
33 33
     protected string $firstname;
34 34
 
35 35
     /**
36
-    * The email field
37
-    * @var string
38
-    */
36
+     * The email field
37
+     * @var string
38
+     */
39 39
     protected string $email;
40 40
 
41 41
     /**
42
-    * The password field
43
-    * @var string
44
-    */
42
+     * The password field
43
+     * @var string
44
+     */
45 45
     protected string $password;
46 46
 
47 47
     /**
48
-    * The password confirm field
49
-    * @var string
50
-    */
48
+     * The password confirm field
49
+     * @var string
50
+     */
51 51
     protected string $passwordConfirm;
52 52
 
53 53
     /**
54
-    * The status field
55
-    * @var string
56
-    */
54
+     * The status field
55
+     * @var string
56
+     */
57 57
     protected string $status;
58 58
 
59 59
     /**
60
-    * The role field
61
-    * @var string|null
62
-    */
60
+     * The role field
61
+     * @var string|null
62
+     */
63 63
     protected ?string $role = null;
64 64
 
65 65
     /**
66
-    * The roles field
67
-    * @var array<int>
68
-    */
66
+     * The roles field
67
+     * @var array<int>
68
+     */
69 69
     protected array $roles = [];
70 70
 
71 71
 
72 72
     /**
73
-    * @param TEntity $entity
74
-    * @return $this
75
-    */
73
+     * @param TEntity $entity
74
+     * @return $this
75
+     */
76 76
     public function fromEntity(Entity $entity): self
77 77
     {
78 78
         $this->username = $entity->username;
@@ -87,81 +87,81 @@  discard block
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-    * Return the username value
91
-    * @return string
92
-    */
90
+     * Return the username value
91
+     * @return string
92
+     */
93 93
     public function getUsername(): string
94 94
     {
95 95
         return $this->username;
96 96
     }
97 97
 
98
-   /**
99
-    * Return the lastname value
100
-    * @return string
101
-    */
98
+    /**
99
+     * Return the lastname value
100
+     * @return string
101
+     */
102 102
     public function getLastname(): string
103 103
     {
104 104
         return $this->lastname;
105 105
     }
106 106
 
107
-   /**
108
-    * Return the firstname value
109
-    * @return string
110
-    */
107
+    /**
108
+     * Return the firstname value
109
+     * @return string
110
+     */
111 111
     public function getFirstname(): string
112 112
     {
113 113
         return $this->firstname;
114 114
     }
115 115
 
116
-   /**
117
-    * Return the email value
118
-    * @return string
119
-    */
116
+    /**
117
+     * Return the email value
118
+     * @return string
119
+     */
120 120
     public function getEmail(): string
121 121
     {
122 122
         return $this->email;
123 123
     }
124 124
 
125
-   /**
126
-    * Return the password value
127
-    * @return string
128
-    */
125
+    /**
126
+     * Return the password value
127
+     * @return string
128
+     */
129 129
     public function getPassword(): string
130 130
     {
131 131
         return $this->password;
132 132
     }
133 133
 
134
-   /**
135
-    * Return the password confirm value
136
-    * @return string
137
-    */
134
+    /**
135
+     * Return the password confirm value
136
+     * @return string
137
+     */
138 138
     public function getPasswordConfirm(): string
139 139
     {
140 140
         return $this->passwordConfirm;
141 141
     }
142 142
 
143
-   /**
144
-    * Return the status value
145
-    * @return string
146
-    */
143
+    /**
144
+     * Return the status value
145
+     * @return string
146
+     */
147 147
     public function getStatus(): string
148 148
     {
149 149
         return $this->status;
150 150
     }
151 151
 
152
-   /**
153
-    * Return the role value
154
-    * @return string|null
155
-    */
152
+    /**
153
+     * Return the role value
154
+     * @return string|null
155
+     */
156 156
     public function getRole(): ?string
157 157
     {
158 158
         return $this->role;
159 159
     }
160 160
 
161
-   /**
162
-    * Return the roles
163
-    * @return array<int>
164
-    */
161
+    /**
162
+     * Return the roles
163
+     * @return array<int>
164
+     */
165 165
     public function getRoles(): array
166 166
     {
167 167
         return $this->roles;
@@ -169,10 +169,10 @@  discard block
 block discarded – undo
169 169
 
170 170
 
171 171
     /**
172
-    * Set the username value
173
-    * @param string $username
174
-    * @return $this
175
-    */
172
+     * Set the username value
173
+     * @param string $username
174
+     * @return $this
175
+     */
176 176
     public function setUsername(string $username): self
177 177
     {
178 178
         $this->username = $username;
@@ -180,11 +180,11 @@  discard block
 block discarded – undo
180 180
         return $this;
181 181
     }
182 182
 
183
-   /**
184
-    * Set the lastname value
185
-    * @param string $lastname
186
-    * @return $this
187
-    */
183
+    /**
184
+     * Set the lastname value
185
+     * @param string $lastname
186
+     * @return $this
187
+     */
188 188
     public function setLastname(string $lastname): self
189 189
     {
190 190
         $this->lastname = $lastname;
@@ -192,11 +192,11 @@  discard block
 block discarded – undo
192 192
         return $this;
193 193
     }
194 194
 
195
-   /**
196
-    * Set the firstname value
197
-    * @param string $firstname
198
-    * @return $this
199
-    */
195
+    /**
196
+     * Set the firstname value
197
+     * @param string $firstname
198
+     * @return $this
199
+     */
200 200
     public function setFirstname(string $firstname): self
201 201
     {
202 202
         $this->firstname = $firstname;
@@ -204,11 +204,11 @@  discard block
 block discarded – undo
204 204
         return $this;
205 205
     }
206 206
 
207
-   /**
208
-    * Set the email value
209
-    * @param string $email
210
-    * @return $this
211
-    */
207
+    /**
208
+     * Set the email value
209
+     * @param string $email
210
+     * @return $this
211
+     */
212 212
     public function setEmail(string $email): self
213 213
     {
214 214
         $this->email = $email;
@@ -216,11 +216,11 @@  discard block
 block discarded – undo
216 216
         return $this;
217 217
     }
218 218
 
219
-   /**
220
-    * Set the password value
221
-    * @param string $password
222
-    * @return $this
223
-    */
219
+    /**
220
+     * Set the password value
221
+     * @param string $password
222
+     * @return $this
223
+     */
224 224
     public function setPassword(string $password): self
225 225
     {
226 226
         $this->password = $password;
@@ -228,11 +228,11 @@  discard block
 block discarded – undo
228 228
         return $this;
229 229
     }
230 230
 
231
-   /**
232
-    * Set the password confirm value
233
-    * @param string $passwordConfirm
234
-    * @return $this
235
-    */
231
+    /**
232
+     * Set the password confirm value
233
+     * @param string $passwordConfirm
234
+     * @return $this
235
+     */
236 236
     public function setPasswordConfirm(string $passwordConfirm): self
237 237
     {
238 238
         $this->passwordConfirm = $passwordConfirm;
@@ -240,11 +240,11 @@  discard block
 block discarded – undo
240 240
         return $this;
241 241
     }
242 242
 
243
-   /**
244
-    * Set the status value
245
-    * @param string $status
246
-    * @return $this
247
-    */
243
+    /**
244
+     * Set the status value
245
+     * @param string $status
246
+     * @return $this
247
+     */
248 248
     public function setStatus(string $status): self
249 249
     {
250 250
         $this->status = $status;
@@ -252,11 +252,11 @@  discard block
 block discarded – undo
252 252
         return $this;
253 253
     }
254 254
 
255
-   /**
256
-    * Set the role value
257
-    * @param string|null $role
258
-    * @return $this
259
-    */
255
+    /**
256
+     * Set the role value
257
+     * @param string|null $role
258
+     * @return $this
259
+     */
260 260
     public function setRole(?string $role): self
261 261
     {
262 262
         $this->role = $role;
@@ -264,11 +264,11 @@  discard block
 block discarded – undo
264 264
         return $this;
265 265
     }
266 266
 
267
-   /**
268
-    * Set the roles
269
-    * @param array<int> $roles
270
-    * @return $this
271
-    */
267
+    /**
268
+     * Set the roles
269
+     * @param array<int> $roles
270
+     * @return $this
271
+     */
272 272
     public function setRoles(array $roles): self
273 273
     {
274 274
         $this->roles = $roles;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
 * @package Platine\App\Param
13 13
 * @template TEntity as Entity
14 14
 */
15
-class UserParam extends BaseParam
16
-{
15
+class UserParam extends BaseParam {
17 16
     /**
18 17
     * The username field
19 18
     * @var string
Please login to merge, or discard this patch.
storage/migrations/20231207_053927_add_product_categories_table.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,15 +14,15 @@
 block discarded – undo
14 14
         //Action when migrate up
15 15
         $this->create('product_categories', function (CreateTable $table) {
16 16
             $table->integer('id')
17
-                  ->autoincrement()
18
-                 ->primary();
17
+                    ->autoincrement()
18
+                    ->primary();
19 19
             
20 20
             $table->string('name')
21
-                 ->description('The category name')
22
-                 ->notNull();
21
+                    ->description('The category name')
22
+                    ->notNull();
23 23
             
24 24
             $table->string('description')
25
-                 ->description('The category description');
25
+                    ->description('The category description');
26 26
             
27 27
             $table->timestamps();
28 28
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
         //Action when migrate up
15
-        $this->create('product_categories', function (CreateTable $table) {
15
+        $this->create('product_categories', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                  ->primary();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 use Platine\Database\Schema\CreateTable;
7 7
 use Platine\Framework\Migration\AbstractMigration;
8 8
 
9
-class AddProductCategoriesTable20231207053927 extends AbstractMigration
10
-{
9
+class AddProductCategoriesTable20231207053927 extends AbstractMigration {
11 10
 
12 11
     public function up(): void
13 12
     {
Please login to merge, or discard this patch.
app/Provider/ProductServiceProvider.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 class ProductServiceProvider extends ServiceProvider
17 17
 {
18 18
     /**
19
-    * {@inheritdoc}
20
-    */
19
+     * {@inheritdoc}
20
+     */
21 21
     public function register(): void
22 22
     {
23 23
         $this->app->bind(ProductCategoryRepository::class);
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 
27 27
 
28 28
     /**
29
-    * {@inheritdoc}
30
-    */
29
+     * {@inheritdoc}
30
+     */
31 31
     public function addRoutes(Router $router): void
32 32
     {
33 33
         $router->group('/product', function (Router $router) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
 * @class ProductServiceProvider
14 14
 * @package Platine\App\Provider
15 15
 */
16
-class ProductServiceProvider extends ServiceProvider
17
-{
16
+class ProductServiceProvider extends ServiceProvider {
18 17
     /**
19 18
     * {@inheritdoc}
20 19
     */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     */
36 36
     public function addRoutes(Router $router): void
37 37
     {
38
-        $router->group('/product', function (Router $router) {
38
+        $router->group('/product', function(Router $router) {
39 39
             $router->resource('', ProductAction::class, 'product');
40 40
             $router->resource('/category', CategoryAction::class, 'product_category');
41 41
         });
Please login to merge, or discard this patch.
app/Model/Repository/ProductCategoryRepository.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
 class ProductCategoryRepository extends Repository
17 17
 {
18 18
     /**
19
-    * Create new instance
20
-    * @param EntityManager<ProductCategory> $manager
21
-    */
19
+     * Create new instance
20
+     * @param EntityManager<ProductCategory> $manager
21
+     */
22 22
     public function __construct(EntityManager $manager)
23 23
     {
24 24
         parent::__construct($manager, ProductCategory::class);
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,14 +13,12 @@
 block discarded – undo
13 13
 * @package Platine\App\Model\Repository
14 14
 * @extends Repository<ProductCategory>
15 15
 */
16
-class ProductCategoryRepository extends Repository
17
-{
16
+class ProductCategoryRepository extends Repository {
18 17
     /**
19 18
     * Create new instance
20 19
     * @param EntityManager<ProductCategory> $manager
21 20
     */
22
-    public function __construct(EntityManager $manager)
23
-    {
21
+    public function __construct(EntityManager $manager) {
24 22
         parent::__construct($manager, ProductCategory::class);
25 23
     }
26 24
 }
Please login to merge, or discard this patch.
app/Model/Entity/ProductCategory.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,16 +15,16 @@
 block discarded – undo
15 15
 class ProductCategory extends Entity
16 16
 {
17 17
     /**
18
-    * @param EntityMapperInterface<ProductCategory> $mapper
19
-    * @return void
20
-    */
18
+     * @param EntityMapperInterface<ProductCategory> $mapper
19
+     * @return void
20
+     */
21 21
     public static function mapEntity(EntityMapperInterface $mapper): void
22 22
     {
23 23
         $mapper->table('product_categories');
24 24
         $mapper->useTimestamp();
25 25
         $mapper->casts([
26
-           'created_at' => 'date',
27
-           'updated_at' => '?date',
26
+            'created_at' => 'date',
27
+            'updated_at' => '?date',
28 28
         ]);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
 * @package Platine\App\Model\Entity
13 13
 * @extends Entity<ProductCategory>
14 14
 */
15
-class ProductCategory extends Entity
16
-{
15
+class ProductCategory extends Entity {
17 16
     /**
18 17
     * @param EntityMapperInterface<ProductCategory> $mapper
19 18
     * @return void
Please login to merge, or discard this patch.
app/Param/ProductCategoryParam.php 2 patches
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -15,22 +15,22 @@  discard block
 block discarded – undo
15 15
 class ProductCategoryParam extends BaseParam
16 16
 {
17 17
     /**
18
-    * The name field
19
-    * @var string
20
-    */
18
+     * The name field
19
+     * @var string
20
+     */
21 21
     protected string $name;
22 22
 
23 23
     /**
24
-    * The description field
25
-    * @var string|null
26
-    */
24
+     * The description field
25
+     * @var string|null
26
+     */
27 27
     protected ?string $description = null;
28 28
 
29 29
 
30 30
     /**
31
-    * @param TEntity $entity
32
-    * @return $this
33
-    */
31
+     * @param TEntity $entity
32
+     * @return $this
33
+     */
34 34
     public function fromEntity(Entity $entity): self
35 35
     {
36 36
         $this->name = $entity->name;
@@ -40,18 +40,18 @@  discard block
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-    * Return the name value
44
-    * @return string
45
-    */
43
+     * Return the name value
44
+     * @return string
45
+     */
46 46
     public function getName(): string
47 47
     {
48 48
         return $this->name;
49 49
     }
50 50
 
51
-   /**
52
-    * Return the description value
53
-    * @return string|null
54
-    */
51
+    /**
52
+     * Return the description value
53
+     * @return string|null
54
+     */
55 55
     public function getDescription(): ?string
56 56
     {
57 57
         return $this->description;
@@ -59,10 +59,10 @@  discard block
 block discarded – undo
59 59
 
60 60
 
61 61
     /**
62
-    * Set the name value
63
-    * @param string $name
64
-    * @return $this
65
-    */
62
+     * Set the name value
63
+     * @param string $name
64
+     * @return $this
65
+     */
66 66
     public function setName(string $name): self
67 67
     {
68 68
         $this->name = $name;
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
         return $this;
71 71
     }
72 72
 
73
-   /**
74
-    * Set the description value
75
-    * @param string|null $description
76
-    * @return $this
77
-    */
73
+    /**
74
+     * Set the description value
75
+     * @param string|null $description
76
+     * @return $this
77
+     */
78 78
     public function setDescription(?string $description): self
79 79
     {
80 80
         $this->description = $description;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,7 @@
 block discarded – undo
12 12
 * @package Platine\App\Param
13 13
 * @template TEntity as Entity
14 14
 */
15
-class ProductCategoryParam extends BaseParam
16
-{
15
+class ProductCategoryParam extends BaseParam {
17 16
     /**
18 17
     * The name field
19 18
     * @var string
Please login to merge, or discard this patch.
storage/migrations/20231207_060117_add_products_table.php 3 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,35 +14,35 @@
 block discarded – undo
14 14
         //Action when migrate up
15 15
         $this->create('products', function (CreateTable $table) {
16 16
             $table->integer('id')
17
-                  ->autoincrement()
18
-                 ->primary();
17
+                    ->autoincrement()
18
+                    ->primary();
19 19
             
20 20
             $table->string('name')
21
-                 ->description('The product name')
22
-                 ->notNull();
21
+                    ->description('The product name')
22
+                    ->notNull();
23 23
             
24 24
             $table->string('description')
25
-                 ->description('The product description');
25
+                    ->description('The product description');
26 26
             
27 27
             $table->float('price')
28
-                   ->defaultValue(0)
29
-                   ->description('The product price')
30
-                   ->notNull();
28
+                    ->defaultValue(0)
29
+                    ->description('The product price')
30
+                    ->notNull();
31 31
             
32 32
             $table->float('quantity')
33
-                   ->defaultValue(0)
34
-                   ->description('The product quantity')
35
-                   ->notNull();
33
+                    ->defaultValue(0)
34
+                    ->description('The product quantity')
35
+                    ->notNull();
36 36
             
37 37
             $table->integer('product_category_id')
38
-                 ->description('Product category')
39
-                  ->notNull();
38
+                    ->description('Product category')
39
+                    ->notNull();
40 40
             
41 41
             $table->timestamps();
42 42
             
43 43
             $table->foreign('product_category_id')
44
-                  ->references('product_categories', 'id')
45
-                  ->onDelete('NO ACTION');
44
+                    ->references('product_categories', 'id')
45
+                    ->onDelete('NO ACTION');
46 46
 
47 47
             $table->engine('INNODB');
48 48
         });
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
         //Action when migrate up
15
-        $this->create('products', function (CreateTable $table) {
15
+        $this->create('products', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                  ->primary();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 use Platine\Database\Schema\CreateTable;
7 7
 use Platine\Framework\Migration\AbstractMigration;
8 8
 
9
-class AddProductsTable20231207060117 extends AbstractMigration
10
-{
9
+class AddProductsTable20231207060117 extends AbstractMigration {
11 10
 
12 11
     public function up(): void
13 12
     {
Please login to merge, or discard this patch.