EventServiceProvider.php 818 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
  4. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  5. class EventServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * The event listener mappings for the application.
  9. *
  10. * @var array
  11. */
  12. protected $listen = [
  13. 'App\Events\SomeEvent' => [
  14. 'App\Listeners\EventListener',
  15. ],
  16. 'App\Events\LogEvent' => [
  17. 'App\Listeners\LogListener',
  18. ],
  19. ];
  20. /**
  21. * Register any other events for your application.
  22. *
  23. * @param \Illuminate\Contracts\Events\Dispatcher $events
  24. * @return void
  25. */
  26. public function boot(DispatcherContract $events)
  27. {
  28. parent::boot($events);
  29. //
  30. }
  31. }