Files
lpj/app/Providers/EventServiceProvider.php
Daeng Deni Mardaeni e950b73b44 Optimize code
2024-08-13 11:54:42 +07:00

33 lines
766 B
PHP

<?php
namespace Modules\Lpj\Providers;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* 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
{
}
}