1
0
mirror of https://github.com/flarum/core.git synced 2025-07-20 08:11:27 +02:00

Split up old CoreServiceProvider

This commit is contained in:
Franz Liedke
2017-06-24 14:51:42 +02:00
parent e6e4531771
commit 66f35d2530
9 changed files with 187 additions and 48 deletions

View File

@@ -30,4 +30,14 @@ class ExtensionServiceProvider extends AbstractServiceProvider
$this->app->call($bootstrapper);
}
}
/**
* {@inheritdoc}
*/
public function boot()
{
$events = $this->app->make('events');
$events->subscribe('Flarum\Extension\DefaultLanguagePackGuard');
}
}