EventServiceProvider.php 762 B

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