Passed
Branch master (fe3a38)
by Jianhua
04:56
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,8 +84,8 @@  discard block
 block discarded – undo
84 84
     protected function mapWebRoutes()
85 85
     {
86 86
         Route::middleware('web')
87
-             ->namespace($this->namespace . '\Front')
88
-             ->group(base_path('routes/web.php'));
87
+                ->namespace($this->namespace . '\Front')
88
+                ->group(base_path('routes/web.php'));
89 89
     }
90 90
 
91 91
     /**
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
     protected function mapApiRoutes()
99 99
     {
100 100
         Route::prefix('api')
101
-             ->middleware('api')
102
-             ->namespace($this->namespace)
103
-             ->group(base_path('routes/api.php'));
101
+                ->middleware('api')
102
+                ->namespace($this->namespace)
103
+                ->group(base_path('routes/api.php'));
104 104
     }
105 105
 }
Please login to merge, or discard this patch.