EventServiceProvider.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Auth\Events\Registered;
  4. use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
  5. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  6. use Illuminate\Support\Facades\Event;
  7. class EventServiceProvider extends ServiceProvider
  8. {
  9. /**
  10. * The event to listener mappings for the application.
  11. *
  12. * @var array<class-string, array<int, class-string>>
  13. */
  14. protected $listen = [
  15. Registered::class => [
  16. SendEmailVerificationNotification::class,
  17. ],
  18. 'Illuminate\Auth\Events\Authenticated' => [
  19. 'App\Listeners\LogAuthenticated',
  20. ],
  21. 'Illuminate\Mail\Events\MessageSent' => [
  22. 'App\Listeners\LogSentMessage',
  23. ]
  24. ];
  25. /**
  26. * Register any events for your application.
  27. *
  28. * @return void
  29. */
  30. public function boot()
  31. {
  32. //
  33. }
  34. /**
  35. * Determine if events and listeners should be automatically discovered.
  36. *
  37. * @return bool
  38. */
  39. public function shouldDiscoverEvents()
  40. {
  41. return false;
  42. }
  43. }