123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace App\Providers;
- use App\Events\PaymentEvent;
- use App\Events\UserUpdateCreditsEvent;
- use App\Listeners\CreateInvoice;
- use App\Listeners\UnsuspendServers;
- use App\Listeners\UserPayment;
- use App\Listeners\Verified as VerifiedListener;
- use Illuminate\Auth\Events\Registered;
- use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
- use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
- use SocialiteProviders\Manager\SocialiteWasCalled;
- use Illuminate\Auth\Events\Verified;
- class EventServiceProvider extends ServiceProvider
- {
- /**
- * The event listener mappings for the application.
- *
- * @var array
- */
- protected $listen = [
- Registered::class => [
- SendEmailVerificationNotification::class,
- ],
- UserUpdateCreditsEvent::class => [
- UnsuspendServers::class,
- ],
- PaymentEvent::class => [
- CreateInvoice::class,
- UserPayment::class,
- ],
- SocialiteWasCalled::class => [
- // ... other providers
- 'SocialiteProviders\\Discord\\DiscordExtendSocialite@handle',
- ],
- Verified::class => [
- VerifiedListener::class,
- ],
- ];
- /**
- * Register any events for your application.
- *
- * @return void
- */
- public function boot()
- {
- //
- }
- /**
- * Determine if events and listeners should be automatically discovered.
- *
- * @return bool
- */
- public function shouldDiscoverEvents()
- {
- return false;
- }
- }
|