EventServiceProvider.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace App\Providers;
  3. use App\Events\OrderCreateEvent;
  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 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. OrderCreateEvent::class => [
  19. \App\Listeners\OrderCreateListener::class,
  20. ],
  21. ];
  22. /**
  23. * Register any events for your application.
  24. *
  25. * @return void
  26. */
  27. public function boot()
  28. {
  29. //
  30. }
  31. /**
  32. * Determine if events and listeners should be automatically discovered.
  33. *
  34. * @return bool
  35. */
  36. public function shouldDiscoverEvents()
  37. {
  38. return false;
  39. }
  40. }