EventServiceProvider.php 753 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Providers;
  3. use App\Listeners\CreateNewPlane;
  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. CreateNewPlane::class
  19. ],
  20. ];
  21. /**
  22. * Register any events for your application.
  23. *
  24. * @return void
  25. */
  26. public function boot()
  27. {
  28. //
  29. }
  30. }