1
0

EventServiceProvider.php 720 B

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