3 namespace Oxbow\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 'Oxbow\Events\SomeEvent' => [
17 'Oxbow\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);