Passed
Push — master ( 11848a...152feb )
by nguereza
13:16 queued 12s
created
app/Param/PermissionParam.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -15,21 +15,21 @@  discard block
 block discarded – undo
15 15
 class PermissionParam extends BaseParam
16 16
 {
17 17
     /**
18
-    * The code field
19
-    * @var string
20
-    */
18
+     * The code field
19
+     * @var string
20
+     */
21 21
     protected string $code;
22 22
 
23 23
     /**
24
-    * The description field
25
-    * @var string
26
-    */
24
+     * The description field
25
+     * @var string
26
+     */
27 27
     protected string $description;
28 28
 
29 29
     /**
30
-    * @param TEntity $entity
31
-    * @return $this
32
-    */
30
+     * @param TEntity $entity
31
+     * @return $this
32
+     */
33 33
     public function fromEntity(Entity $entity): self
34 34
     {
35 35
         $this->code = $entity->code;
@@ -39,28 +39,28 @@  discard block
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-    * Return the code value
43
-    * @return string
44
-    */
42
+     * Return the code value
43
+     * @return string
44
+     */
45 45
     public function getCode(): string
46 46
     {
47 47
         return $this->code;
48 48
     }
49 49
 
50
-   /**
51
-    * Return the description value
52
-    * @return string
53
-    */
50
+    /**
51
+     * Return the description value
52
+     * @return string
53
+     */
54 54
     public function getDescription(): string
55 55
     {
56 56
         return $this->description;
57 57
     }
58 58
 
59 59
     /**
60
-    * Set the code value
61
-    * @param string $code
62
-    * @return $this
63
-    */
60
+     * Set the code value
61
+     * @param string $code
62
+     * @return $this
63
+     */
64 64
     public function setCode(string $code): self
65 65
     {
66 66
         $this->code = $code;
@@ -68,11 +68,11 @@  discard block
 block discarded – undo
68 68
         return $this;
69 69
     }
70 70
 
71
-   /**
72
-    * Set the description value
73
-    * @param string $description
74
-    * @return $this
75
-    */
71
+    /**
72
+     * Set the description value
73
+     * @param string $description
74
+     * @return $this
75
+     */
76 76
     public function setDescription(string $description): self
77 77
     {
78 78
         $this->description = $description;
Please login to merge, or discard this patch.
storage/migrations/20210717_094547_add_permissions_table.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -9,29 +9,29 @@  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', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
             
18 18
             $table->string('code')
19
-                 ->description('The permission code')
20
-                 ->unique()
21
-                 ->notNull();
19
+                    ->description('The permission code')
20
+                    ->unique()
21
+                    ->notNull();
22 22
             
23 23
             $table->string('description')
24
-                 ->description('The permission description')
25
-                 ->notNull();
24
+                    ->description('The permission description')
25
+                    ->notNull();
26 26
             
27 27
             $table->integer('parent_id')
28
-                  ->description('The parent permission');
28
+                    ->description('The parent permission');
29 29
             
30 30
             $table->timestamps();
31 31
             
32 32
             $table->foreign('parent_id')
33
-                 ->references('permissions', 'id')
34
-                 ->onDelete('CASCADE');
33
+                    ->references('permissions', 'id')
34
+                    ->onDelete('CASCADE');
35 35
 
36 36
             $table->engine('INNODB');
37 37
         });
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function down(): void
41 41
     {
42
-      //Action when migrate down
42
+        //Action when migrate down
43 43
         $this->drop('permissions');
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
storage/migrations/20220109_074106_add_configuration_table.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function up(): void
13 13
     {
14
-      //Action when migrate up
14
+        //Action when migrate up
15 15
         $this->create('configurations', function (CreateTable $table) {
16 16
             $table->integer('id')
17 17
                     ->autoincrement()
18 18
                     ->primary();
19 19
 
20 20
             $table->string('env')
21
-                   ->description('The config environment')
22
-                   ->index();
21
+                    ->description('The config environment')
22
+                    ->index();
23 23
 
24 24
             $table->string('module')
25 25
                     ->description('The module')
@@ -27,24 +27,24 @@  discard block
 block discarded – undo
27 27
                     ->notNull();
28 28
 
29 29
             $table->string('name')
30
-                  ->description('The config name')
31
-                  ->index()
32
-                  ->notNull();
30
+                    ->description('The config name')
31
+                    ->index()
32
+                    ->notNull();
33 33
 
34 34
             $table->text('value')
35 35
                     ->description('The config value');
36 36
 
37 37
             $table->string('type')
38
-                   ->description('The config data type')
39
-                   ->notNull();
38
+                    ->description('The config data type')
39
+                    ->notNull();
40 40
 
41 41
             $table->text('comment')
42
-                  ->description('The config description');
42
+                    ->description('The config description');
43 43
 
44 44
             $table->enum('status', ['Y', 'N'])
45
-                 ->description('The config status')
46
-                 ->defaultValue('Y')
47
-                 ->notNull();
45
+                    ->description('The config status')
46
+                    ->defaultValue('Y')
47
+                    ->notNull();
48 48
 
49 49
             $table->timestamps();
50 50
             
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function down(): void
56 56
     {
57
-      //Action when migrate down
57
+        //Action when migrate down
58 58
         $this->drop('configurations');
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
storage/migrations/20210705_065248_add_users_table.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -9,41 +9,41 @@  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('users', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
 
18 18
             $table->string('username')
19
-                 ->description('The username')
20
-                 ->unique()
21
-                 ->notNull();
19
+                    ->description('The username')
20
+                    ->unique()
21
+                    ->notNull();
22 22
 
23 23
             $table->string('email')
24
-                 ->description('The user email')
25
-                 ->unique()
26
-                 ->notNull();
24
+                    ->description('The user email')
25
+                    ->unique()
26
+                    ->notNull();
27 27
 
28 28
             $table->string('password')
29
-                 ->description('The user password')
30
-                 ->notNull();
29
+                    ->description('The user password')
30
+                    ->notNull();
31 31
 
32 32
             $table->enum('status', ['A', 'D'])
33
-                 ->description('The user status, A=Active, D=Deactive/Locked')
34
-                 ->defaultValue('D')
35
-                 ->notNull();
33
+                    ->description('The user status, A=Active, D=Deactive/Locked')
34
+                    ->defaultValue('D')
35
+                    ->notNull();
36 36
 
37 37
             $table->string('lastname')
38
-                 ->description('The user lastname')
39
-                 ->notNull();
38
+                    ->description('The user lastname')
39
+                    ->notNull();
40 40
 
41 41
             $table->string('firstname')
42
-                 ->description('The user firstname')
43
-                  ->notNull();
42
+                    ->description('The user firstname')
43
+                    ->notNull();
44 44
 
45 45
             $table->string('role')
46
-                 ->description('The user role or job');
46
+                    ->description('The user role or job');
47 47
 
48 48
             $table->timestamps();
49 49
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     public function down(): void
55 55
     {
56
-      //Action when migrate down
56
+        //Action when migrate down
57 57
         $this->drop('users');
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
storage/migrations/20210823_152146_add_api_tokens_table.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,26 +9,26 @@  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('tokens', function (CreateTable $table) {
14 14
             $table->integer('id')
15 15
                     ->autoincrement()
16 16
                     ->primary();
17 17
 
18 18
             $table->string('token')
19
-                   ->unique()
20
-                   ->notNull();
19
+                    ->unique()
20
+                    ->notNull();
21 21
 
22 22
             $table->string('refresh_token')
23
-                   ->unique()
24
-                   ->notNull();
23
+                    ->unique()
24
+                    ->notNull();
25 25
 
26 26
             $table->datetime('expire_at')
27
-                  ->notNull();
27
+                    ->notNull();
28 28
 
29 29
             $table->integer('user_id')
30
-                   ->description('The owner of the token')
31
-                   ->notNull();
30
+                    ->description('The owner of the token')
31
+                    ->notNull();
32 32
 
33 33
             $table->timestamps();
34 34
             
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function down(): void
44 44
     {
45
-      //Action when migrate down
45
+        //Action when migrate down
46 46
         $this->drop('tokens');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
storage/migrations/20210705_065247_add_roles_table.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,18 +9,18 @@  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', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
             
18 18
             $table->string('name')
19
-                 ->description('The role name')
20
-                 ->notNull();
19
+                    ->description('The role name')
20
+                    ->notNull();
21 21
             
22 22
             $table->string('description')
23
-                 ->description('The role description');
23
+                    ->description('The role description');
24 24
             
25 25
             $table->timestamps();
26 26
 
@@ -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');
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
storage/migrations/20220323_095520_add_audits_table.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function up(): void
13 13
     {
14
-      //Action when migrate up
14
+        //Action when migrate up
15 15
         $this->create('audits', function (CreateTable $table) {
16 16
             $table->integer('id')
17
-                  ->autoincrement()
18
-                  ->primary();
17
+                    ->autoincrement()
18
+                    ->primary();
19 19
 
20 20
             $table->string('event')
21 21
                     ->description('The audit event')
@@ -23,20 +23,20 @@  discard block
 block discarded – undo
23 23
                     ->notNull();
24 24
 
25 25
             $table->text('detail')
26
-                  ->description('The audit detail');
26
+                    ->description('The audit detail');
27 27
 
28 28
             $table->string('url')
29
-                  ->description('The audit action URL');
29
+                    ->description('The audit action URL');
30 30
 
31 31
             $table->string('ip')
32
-                 ->description('The IP address')
33
-                 ->notNull();
32
+                    ->description('The IP address')
33
+                    ->notNull();
34 34
 
35 35
             $table->string('user_agent')
36
-                  ->description('The user agent');
36
+                    ->description('The user agent');
37 37
 
38 38
             $table->string('tags')
39
-                  ->description('The audit tags');
39
+                    ->description('The audit tags');
40 40
 
41 41
             $table->datetime('date')
42 42
                     ->description('audit date')
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     public function down(): void
58 58
     {
59
-      //Action when migrate down
59
+        //Action when migrate down
60 60
         $this->drop('audits');
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
config/mail.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,5 +11,5 @@
 block discarded – undo
11 11
             'response_timeout' => env('PL_MAIL_SMTP_RESPONSE_TIMEOUT', 10, 'int'),
12 12
             'username' => env('PL_MAIL_SMTP_USERNAME', ''),
13 13
             'password' => env('PL_MAIL_SMTP_PASSWORD', ''),
14
-         ],
14
+            ],
15 15
     ];
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
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
         CsrfMiddleware::class,
15 15
         AuthenticationMiddleware::class,
16 16
         AuthorizationMiddleware::class,
17
-       // SecurityPolicyMiddleware::class,
17
+        // SecurityPolicyMiddleware::class,
18 18
         RouteDispatcherMiddleware::class,
19 19
     ];
Please login to merge, or discard this patch.