EventServiceProvider.php 806 B

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