Passed
Push — develop ( ac023c...4c1804 )
by nguereza
11:25
created
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
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
         ErrorHandlerMiddleware::class,
10 10
         RouteMatchMiddleware::class,
11 11
         DemoMiddleware::class,
12
-       // SecurityPolicyMiddleware::class,
12
+        // SecurityPolicyMiddleware::class,
13 13
         RouteDispatcherMiddleware::class,
14 14
     ];
Please login to merge, or discard this patch.
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/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/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/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/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.
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.