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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -59,8 +59,8 @@ public function map()
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 @@ protected function mapWebRoutes()
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'));
} }
} }