Passed
Push — master ( bc6228...d8a84b )
by Dan Michael O.
02:53
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
     protected function mapWebRoutes()
92 92
     {
93 93
         Route::middleware('web')
94
-             ->namespace($this->namespace)
95
-             ->group(base_path('routes/web.php'));
94
+                ->namespace($this->namespace)
95
+                ->group(base_path('routes/web.php'));
96 96
     }
97 97
 
98 98
     /**
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
     protected function mapApiRoutes()
106 106
     {
107 107
         Route::prefix('api')
108
-             ->middleware('api')
109
-             ->namespace($this->namespace)
110
-             ->group(base_path('routes/api.php'));
108
+                ->middleware('api')
109
+                ->namespace($this->namespace)
110
+                ->group(base_path('routes/api.php'));
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.