lpj/app/Providers/EventServiceProvider.php

33 lines
766 B
PHP
Raw Normal View History

2024-08-07 03:09:43 +00:00
<?php
2024-08-13 04:54:42 +00:00
namespace Modules\Lpj\Providers;
2024-08-07 03:09:43 +00:00
2024-08-13 04:54:42 +00:00
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
2024-08-07 03:09:43 +00:00
2024-08-13 04:54:42 +00:00
class EventServiceProvider extends ServiceProvider
2024-08-07 03:09:43 +00:00
{
2024-08-13 04:54:42 +00:00
/**
* Indicates if events should be discovered.
*
* @var bool
*/
protected static $shouldDiscoverEvents = true;
/**
* The event handler mappings for the application.
*
* @var array<string, array<int, string>>
*/
protected $listen = [];
/**
* Configure the proper event listeners for email verification.
*
* @return void
*/
protected function configureEmailVerification()
: void
{
2024-08-07 03:09:43 +00:00
2024-08-13 04:54:42 +00:00
}
2024-08-07 03:09:43 +00:00
}