1
0
mirror of https://github.com/flarum/core.git synced 2025-07-19 15:51:16 +02:00

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 fadf87470d
commit a26985cb0d
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;
});
}