海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
799 B

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