ctrlpanel/app/Providers/EventServiceProvider.php

64 lines
1.5 KiB
PHP
Raw Permalink Normal View History

2021-06-05 09:26:32 +00:00
<?php
namespace App\Providers;
use App\Events\PaymentEvent;
use App\Events\UserUpdateCreditsEvent;
use App\Listeners\CreateInvoice;
use App\Listeners\UnsuspendServers;
use App\Listeners\UserPayment;
2023-09-16 19:40:09 +00:00
use App\Listeners\Verified as VerifiedListener;
2021-06-05 09:26:32 +00:00
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use SocialiteProviders\Manager\SocialiteWasCalled;
2023-09-16 19:40:09 +00:00
use Illuminate\Auth\Events\Verified;
2021-06-05 09:26:32 +00:00
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,
],
2021-06-05 09:26:32 +00:00
SocialiteWasCalled::class => [
// ... other providers
'SocialiteProviders\\Discord\\DiscordExtendSocialite@handle',
],
2023-09-16 19:40:09 +00:00
Verified::class => [
VerifiedListener::class,
2021-06-05 09:26:32 +00:00
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
//
}
2023-01-05 17:02:33 +00:00
/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents()
{
return false;
}
2021-06-05 09:26:32 +00:00
}