Fix the code indent of object operators (#5258)

This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting
This commit is contained in:
André Ricard
2020-03-11 09:37:46 -03:00
committed by GitHub
parent b0ce2adc42
commit c7a0002432

View File

@@ -59,8 +59,8 @@ class RouteServiceProvider extends ServiceProvider
protected function mapWebRoutes() protected function mapWebRoutes()
{ {
Route::middleware('web') Route::middleware('web')
->namespace($this->namespace) ->namespace($this->namespace)
->group(base_path('routes/web.php')); ->group(base_path('routes/web.php'));
} }
/** /**
@@ -73,8 +73,8 @@ class RouteServiceProvider extends ServiceProvider
protected function mapApiRoutes() protected function mapApiRoutes()
{ {
Route::prefix('api') Route::prefix('api')
->middleware('api') ->middleware('api')
->namespace($this->namespace) ->namespace($this->namespace)
->group(base_path('routes/api.php')); ->group(base_path('routes/api.php'));
} }
} }