Files
anonaddy/app/Providers/EventServiceProvider.php
2023-04-26 16:53:39 +01:00

48 lines
1.1 KiB
PHP

<?php
namespace App\Providers;
use App\Listeners\CheckIfShouldBlock;
use App\Listeners\SendIncorrectOtpNotification;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Mail\Events\MessageSending;
use PragmaRX\Google2FALaravel\Events\LoginFailed;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
MessageSending::class => [
CheckIfShouldBlock::class,
],
LoginFailed::class => [
SendIncorrectOtpNotification::class,
],
];
/**
* Register any events for your application.
*/
public function boot(): void
{
//
}
/**
* Determine if events and listeners should be automatically discovered.
*/
public function shouldDiscoverEvents(): bool
{
return false;
}
}