Skip to content

Commit

Permalink
Fix the code indent of object operators (laravel#5258)
Browse files Browse the repository at this point in the history
This commit fixes the code indent of object operators, as following the framework code standards -> 2.4. Indenting
  • Loading branch information
andrericard authored Mar 11, 2020
1 parent b0ce2ad commit c7a0002
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public function map()
protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
->namespace($this->namespace)
->group(base_path('routes/web.php'));
}

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

0 comments on commit c7a0002

Please sign in to comment.