Apply fixes from StyleCI

This commit is contained in:
Manish Verma
2020-03-17 05:14:38 +00:00
committed by StyleCI Bot
parent 9fe479b141
commit ed3bbd76d7
75 changed files with 1285 additions and 1030 deletions

View File

@@ -88,7 +88,7 @@ class RouteServiceProvider extends ServiceProvider
Route::group([
'middleware' => ['web', 'installer'],
'namespace' => $this->namespace,
], function ($router) {
], function ($router) {
require base_path('routes/installer.php');
});
}
@@ -106,7 +106,7 @@ class RouteServiceProvider extends ServiceProvider
'middleware' => ['web', 'redirect', 'install'],
'namespace' => $this->namespace,
'prefix' => 'app/update',
], function ($router) {
], function ($router) {
require base_path('routes/update.php');
});
}