Bristol SU Support Package
EventsServiceProvider.php
Go to the documentation of this file.
1 <?php
2 
4 
8 
12 class EventsServiceProvider extends ServiceProvider
13 {
20  public function register()
21  {
22  $this->app->bind(EventRepositoryContract::class, EventRepository::class);
23  $this->app->singleton(EventManagerContract::class, function($app) {
24  return new EventManager;
25  });
26  }
27 }