EventServiceProvider.php 962 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 listener mappings for the application.
  11. *
  12. * @var array
  13. */
  14. protected $listen = [
  15. Registered::class => [
  16. SendEmailVerificationNotification::class,
  17. ],
  18. \SocialiteProviders\Manager\SocialiteWasCalled::class => [
  19. // ... other providers
  20. \SocialiteProviders\Weixin\WeixinExtendSocialite::class.'@handle',
  21. \SocialiteProviders\Facebook\FacebookExtendSocialite::class.'@handle',
  22. ],
  23. ];
  24. /**
  25. * Register any events for your application.
  26. *
  27. * @return void
  28. */
  29. public function boot()
  30. {
  31. //
  32. }
  33. }