Completed
Push — master ( 5021ae...be2f55 )
by he
08:00
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
     protected function mapApiRoutes()
41 41
     {
42 42
         Route::prefix('judge')
43
-             // ->middleware('judge')
44
-             ->namespace($this->namespace)
45
-             ->group(base_path('routes/judge.php'));
43
+                // ->middleware('judge')
44
+                ->namespace($this->namespace)
45
+                ->group(base_path('routes/judge.php'));
46 46
     }
47 47
 
48 48
     /**
@@ -55,15 +55,15 @@  discard block
 block discarded – undo
55 55
     protected function mapWebRoutes()
56 56
     {
57 57
         Route::middleware('web')
58
-             ->namespace($this->namespace)
59
-             ->group(base_path('routes/web.php'));
58
+                ->namespace($this->namespace)
59
+                ->group(base_path('routes/web.php'));
60 60
     }
61 61
 
62 62
     private function mapAdminRoutes()
63 63
     {
64 64
         Route::prefix('admin')
65
-             ->middleware('admin')
66
-             ->namespace($this->namespace)
67
-             ->group(base_path('routes/admin.php'));
65
+                ->middleware('admin')
66
+                ->namespace($this->namespace)
67
+                ->group(base_path('routes/admin.php'));
68 68
     }
69 69
 }
Please login to merge, or discard this patch.