1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 07:57:46 +02:00

Merge pull request #3 from flarum/analysis-zGDx6r

Applied fixes from StyleCI
This commit is contained in:
Toby Zerner
2016-02-26 13:49:24 +10:30
2 changed files with 2 additions and 2 deletions

View File

@@ -15,4 +15,4 @@ use Illuminate\Contracts\Events\Dispatcher;
return function (Dispatcher $events) {
$events->subscribe(Listener\AddClientAssets::class);
$events->subscribe(Listener\FilterNewPosts::class);
};
};

View File

@@ -37,7 +37,7 @@ class AddClientAssets
if ($event->isAdmin()) {
$event->addAssets([
__DIR__ . '/../../js/admin/dist/extension.js'
__DIR__.'/../../js/admin/dist/extension.js'
]);
$event->addBootstrapper('flarum/akismet/main');
}