Passed
Push — master ( d7b7f6...11848a )
by nguereza
02:42
created
public/index.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -63,11 +63,11 @@
 block discarded – undo
63 63
 
64 64
 $app = new Application();
65 65
 $app->setConfigPath(CONFIG_PATH)
66
-      ->setRootPath(ROOT_PATH)
67
-      ->setAppPath(APP_PATH)
68
-      ->setVendorPath(VENDOR_PATH)
69
-      ->setStoragePath(STORAGE_PATH)
70
-      ->setEnvironment(ENVIRONMENT);
66
+        ->setRootPath(ROOT_PATH)
67
+        ->setAppPath(APP_PATH)
68
+        ->setVendorPath(VENDOR_PATH)
69
+        ->setStoragePath(STORAGE_PATH)
70
+        ->setEnvironment(ENVIRONMENT);
71 71
 
72 72
 /** @var HttpKernel $kernel */
73 73
 $kernel = $app->make(HttpKernel::class);
Please login to merge, or discard this patch.
storage/migrations/20210717_094822_add_permission_roles_table.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('permissions_roles', function (CreateTable $table) {
14 14
             $table->integer('permission_id');
15 15
             $table->integer('role_id');
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
             $table->primary(['permission_id', 'role_id']);
18 18
 
19 19
             $table->foreign('permission_id')
20
-                 ->references('permissions', 'id')
21
-                 ->onDelete('CASCADE');
20
+                    ->references('permissions', 'id')
21
+                    ->onDelete('CASCADE');
22 22
 
23 23
             $table->foreign('role_id')
24
-                  ->references('roles', 'id')
25
-                  ->onDelete('CASCADE');
24
+                    ->references('roles', 'id')
25
+                    ->onDelete('CASCADE');
26 26
 
27 27
             $table->engine('INNODB');
28 28
         });
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function down(): void
32 32
     {
33
-      //Action when migrate down
33
+        //Action when migrate down
34 34
         $this->drop('permissions_roles');
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
storage/migrations/20210717_100434_add_role_users_table.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('roles_users', function (CreateTable $table) {
14 14
             $table->integer('user_id');
15 15
             $table->integer('role_id');
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function down(): void
32 32
     {
33
-      //Action when migrate down
33
+        //Action when migrate down
34 34
         $this->drop('roles_users');
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
config/middlewares.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
         CsrfMiddleware::class,
14 14
         AuthenticationMiddleware::class,
15 15
         AuthorizationMiddleware::class,
16
-       // SecurityPolicyMiddleware::class,
16
+        // SecurityPolicyMiddleware::class,
17 17
         RouteDispatcherMiddleware::class,
18 18
     ];
Please login to merge, or discard this patch.
app/Param/AuthParam.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -14,32 +14,32 @@  discard block
 block discarded – undo
14 14
 class AuthParam extends BaseParam
15 15
 {
16 16
     /**
17
-    * The username field
18
-    * @var string
19
-    */
17
+     * The username field
18
+     * @var string
19
+     */
20 20
     protected string $username;
21 21
 
22 22
     /**
23
-    * The password field
24
-    * @var string
25
-    */
23
+     * The password field
24
+     * @var string
25
+     */
26 26
     protected string $password;
27 27
 
28 28
 
29 29
 
30 30
     /**
31
-    * Return the username value
32
-    * @return string
33
-    */
31
+     * Return the username value
32
+     * @return string
33
+     */
34 34
     public function getUsername(): string
35 35
     {
36 36
         return $this->username;
37 37
     }
38 38
 
39
-   /**
40
-    * Return the password value
41
-    * @return string
42
-    */
39
+    /**
40
+     * Return the password value
41
+     * @return string
42
+     */
43 43
     public function getPassword(): string
44 44
     {
45 45
         return $this->password;
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
 
48 48
 
49 49
     /**
50
-    * Set the username value
51
-    * @param string $username
52
-    * @return $this
53
-    */
50
+     * Set the username value
51
+     * @param string $username
52
+     * @return $this
53
+     */
54 54
     public function setUsername(string $username): self
55 55
     {
56 56
         $this->username = $username;
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
         return $this;
59 59
     }
60 60
 
61
-   /**
62
-    * Set the password value
63
-    * @param string $password
64
-    * @return $this
65
-    */
61
+    /**
62
+     * Set the password value
63
+     * @param string $password
64
+     * @return $this
65
+     */
66 66
     public function setPassword(string $password): self
67 67
     {
68 68
         $this->password = $password;
Please login to merge, or discard this patch.
app/Param/RoleParam.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -15,28 +15,28 @@  discard block
 block discarded – undo
15 15
 class RoleParam 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
-    * The permissions field
31
-    * @var array<int>
32
-    */
30
+     * The permissions field
31
+     * @var array<int>
32
+     */
33 33
     protected array $permissions = [];
34 34
 
35 35
 
36 36
     /**
37
-    * @param TEntity $entity
38
-    * @return $this
39
-    */
37
+     * @param TEntity $entity
38
+     * @return $this
39
+     */
40 40
     public function fromEntity(Entity $entity): self
41 41
     {
42 42
         $this->name = $entity->name;
@@ -46,27 +46,27 @@  discard block
 block discarded – undo
46 46
     }
47 47
 
48 48
     /**
49
-    * Return the name value
50
-    * @return string
51
-    */
49
+     * Return the name value
50
+     * @return string
51
+     */
52 52
     public function getName(): string
53 53
     {
54 54
         return $this->name;
55 55
     }
56 56
 
57
-   /**
58
-    * Return the description value
59
-    * @return string|null
60
-    */
57
+    /**
58
+     * Return the description value
59
+     * @return string|null
60
+     */
61 61
     public function getDescription(): ?string
62 62
     {
63 63
         return $this->description;
64 64
     }
65 65
 
66
-   /**
67
-    * Return the permissions value
68
-    * @return array<int>
69
-    */
66
+    /**
67
+     * Return the permissions value
68
+     * @return array<int>
69
+     */
70 70
     public function getPermissions(): array
71 71
     {
72 72
         return $this->permissions;
@@ -74,10 +74,10 @@  discard block
 block discarded – undo
74 74
 
75 75
 
76 76
     /**
77
-    * Set the name value
78
-    * @param string $name
79
-    * @return $this
80
-    */
77
+     * Set the name value
78
+     * @param string $name
79
+     * @return $this
80
+     */
81 81
     public function setName(string $name): self
82 82
     {
83 83
         $this->name = $name;
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
         return $this;
86 86
     }
87 87
 
88
-   /**
89
-    * Set the description value
90
-    * @param string|null $description
91
-    * @return $this
92
-    */
88
+    /**
89
+     * Set the description value
90
+     * @param string|null $description
91
+     * @return $this
92
+     */
93 93
     public function setDescription(?string $description): self
94 94
     {
95 95
         $this->description = $description;
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
         return $this;
98 98
     }
99 99
 
100
-   /**
101
-    * Set the permissions value
102
-    * @param array<int> $permissions
103
-    * @return $this
104
-    */
100
+    /**
101
+     * Set the permissions value
102
+     * @param array<int> $permissions
103
+     * @return $this
104
+     */
105 105
     public function setPermissions(array $permissions): self
106 106
     {
107 107
         $this->permissions = $permissions;
Please login to merge, or discard this patch.
app/Validator/PermissionValidator.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,16 +20,16 @@  discard block
 block discarded – undo
20 20
 class PermissionValidator extends AbstractValidator
21 21
 {
22 22
     /**
23
-    * The parameter instance
24
-    * @var PermissionParam<TEntity>
25
-    */
23
+     * The parameter instance
24
+     * @var PermissionParam<TEntity>
25
+     */
26 26
     protected PermissionParam $param;
27 27
 
28 28
     /**
29
-    * Create new instance
30
-    * @param PermissionParam<TEntity> $param
31
-    * @param Lang $lang
32
-    */
29
+     * Create new instance
30
+     * @param PermissionParam<TEntity> $param
31
+     * @param Lang $lang
32
+     */
33 33
     public function __construct(PermissionParam $param, Lang $lang)
34 34
     {
35 35
         parent::__construct($lang);
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-    * {@inheritdoc}
41
-    */
40
+     * {@inheritdoc}
41
+     */
42 42
     public function setValidationData(): void
43 43
     {
44 44
         $this->addData('code', $this->param->getCode());
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-    * {@inheritdoc}
51
-    */
50
+     * {@inheritdoc}
51
+     */
52 52
     public function setValidationRules(): void
53 53
     {
54 54
         $this->addRules('code', [
Please login to merge, or discard this patch.
app/Validator/RoleValidator.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -19,16 +19,16 @@  discard block
 block discarded – undo
19 19
 class RoleValidator extends AbstractValidator
20 20
 {
21 21
     /**
22
-    * The parameter instance
23
-    * @var RoleParam<TEntity>
24
-    */
22
+     * The parameter instance
23
+     * @var RoleParam<TEntity>
24
+     */
25 25
     protected RoleParam $param;
26 26
 
27 27
     /**
28
-    * Create new instance
29
-    * @param RoleParam<TEntity> $param
30
-    * @param Lang $lang
31
-    */
28
+     * Create new instance
29
+     * @param RoleParam<TEntity> $param
30
+     * @param Lang $lang
31
+     */
32 32
     public function __construct(RoleParam $param, Lang $lang)
33 33
     {
34 34
         parent::__construct($lang);
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-    * {@inheritdoc}
40
-    */
39
+     * {@inheritdoc}
40
+     */
41 41
     public function setValidationData(): void
42 42
     {
43 43
         $this->addData('name', $this->param->getName());
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
     }
46 46
 
47 47
     /**
48
-    * {@inheritdoc}
49
-    */
48
+     * {@inheritdoc}
49
+     */
50 50
     public function setValidationRules(): void
51 51
     {
52 52
         $this->addRules('name', [
Please login to merge, or discard this patch.
app/Validator/AuthValidator.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,16 +20,16 @@  discard block
 block discarded – undo
20 20
 class AuthValidator extends AbstractValidator
21 21
 {
22 22
     /**
23
-    * The parameter instance
24
-    * @var AuthParam<TEntity>
25
-    */
23
+     * The parameter instance
24
+     * @var AuthParam<TEntity>
25
+     */
26 26
     protected AuthParam $param;
27 27
 
28 28
     /**
29
-    * Create new instance
30
-    * @param AuthParam<TEntity> $param
31
-    * @param Lang $lang
32
-    */
29
+     * Create new instance
30
+     * @param AuthParam<TEntity> $param
31
+     * @param Lang $lang
32
+     */
33 33
     public function __construct(AuthParam $param, Lang $lang)
34 34
     {
35 35
         parent::__construct($lang);
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-    * {@inheritdoc}
41
-    */
40
+     * {@inheritdoc}
41
+     */
42 42
     public function setValidationData(): void
43 43
     {
44 44
         $this->addData('username', $this->param->getUsername());
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     }
47 47
 
48 48
     /**
49
-    * {@inheritdoc}
50
-    */
49
+     * {@inheritdoc}
50
+     */
51 51
     public function setValidationRules(): void
52 52
     {
53 53
         $this->addRules('username', [
Please login to merge, or discard this patch.