Apply fixes from StyleCI (#1713)

[ci skip] [skip ci]
This commit is contained in:
Franz Liedke 2018-12-19 22:42:54 +01:00 committed by GitHub
parent dbe8cba14e
commit cb3baf9955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View File

@ -43,6 +43,7 @@ class AdminServiceProvider extends AbstractServiceProvider
$this->app->singleton('flarum.admin.routes', function () {
$routes = new RouteCollection;
$this->populateRoutes($routes);
return $routes;
});

View File

@ -42,6 +42,7 @@ class ApiServiceProvider extends AbstractServiceProvider
$this->app->singleton('flarum.api.routes', function () {
$routes = new RouteCollection;
$this->populateRoutes($routes);
return $routes;
});

View File

@ -48,6 +48,7 @@ class ForumServiceProvider extends AbstractServiceProvider
$this->app->singleton('flarum.forum.routes', function () {
$routes = new RouteCollection;
$this->populateRoutes($routes);
return $routes;
});

View File

@ -25,6 +25,7 @@ class UpdateServiceProvider extends AbstractServiceProvider
$this->app->singleton('flarum.update.routes', function () {
$routes = new RouteCollection;
$this->populateRoutes($routes);
return $routes;
});
}