3 namespace BookStack\Providers;
5 use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
6 use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
8 class EventServiceProvider extends ServiceProvider
11 * The event listener mappings for the application.
16 'BookStack\Events\SomeEvent' => [
17 'BookStack\Listeners\EventListener',
22 * Register any other events for your application.
26 public function boot()