Passed
Pull Request — master (#14)
by ARCANEDEV
08:55
created
src/System/Http/Routes/AbstractRouteRegistrar.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     protected function moduleGroup(Closure $callback)
29 29
     {
30 30
         $this->prefix('system')
31
-             ->name('system.')
32
-             ->group($callback);
31
+                ->name('system.')
32
+                ->group($callback);
33 33
     }
34 34
 }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
src/Auth/Http/Routes/Permissions/RolesRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $this->prefix('{'.self::ROLE_WILDCARD.'}')->group(function () {
40 40
                 // admin::auth.permissions.roles.detach
41 41
                 $this->delete('detach', [RolesController::class, 'detach'])
42
-                     ->name('detach');
42
+                        ->name('detach');
43 43
             });
44 44
         });
45 45
     }
Please login to merge, or discard this patch.
src/Auth/Http/Routes/DashboardRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $this->adminGroup(function () {
28 28
             // admin::authorization.index
29 29
             $this->get('/', [DashboardController::class, 'index'])
30
-                 ->name('index');
30
+                    ->name('index');
31 31
         });
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
src/Auth/Http/Routes/AbstractRouteRegistrar.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     protected function moduleGroup(Closure $callback)
29 29
     {
30 30
         $this->prefix('authorization')
31
-             ->name('auth.')
32
-             ->group($callback);
31
+                ->name('auth.')
32
+                ->group($callback);
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
config/auth.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,8 +95,8 @@
 block discarded – undo
95 95
             'socialite-providers' => 'socialite_providers',
96 96
         ],
97 97
 
98
-         // Models
99
-         // ----------------------------------
98
+            // Models
99
+            // ----------------------------------
100 100
 
101 101
         'models' => [
102 102
             'user'               => App\Models\User::class,
Please login to merge, or discard this patch.
src/Core/Http/Routes/Api/ComponentsRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->prefix('components')->name('components.')->group(function () {
29 29
             // admin::api.components.handle
30 30
             $this->post('/', [ComponentsController::class, 'handle'])
31
-                 ->name('handle');
31
+                    ->name('handle');
32 32
         });
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Core/Http/Routes/Api/MetricsRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->prefix('metrics')->name('metrics.')->group(function () {
29 29
             // admin::api.metrics.handle
30 30
             $this->post('/', [MetricsController::class, 'handle'])
31
-                 ->name('handle');
31
+                    ->name('handle');
32 32
         });
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Core/Http/Routes/Api/EventsRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->prefix('events')->name('events.')->group(function () {
29 29
             // admin::api.events.handle
30 30
             $this->post('/', [EventsController::class, 'handle'])
31
-                 ->name('handle');
31
+                    ->name('handle');
32 32
         });
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Core/Http/Routes/Web/DashboardRoutes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
     {
35 35
         // admin::index
36 36
         $this->get('/', [DashboardController::class, 'index'])
37
-             ->name('index');
37
+                ->name('index');
38 38
     }
39 39
 }
Please login to merge, or discard this patch.