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.
24 * @param \Illuminate\Contracts\Events\Dispatcher $events
27 public function boot(DispatcherContract $events)
29 parent::boot($events);