Page MenuHomePhorge

EventServiceProvider.php
No OneTemporary

Size
881 B
Referenced Files
None
Subscribers
None

EventServiceProvider.php

<?php
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array<class-string, array<int, class-string>>
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Mar 19, 5:57 AM (15 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
458470
Default Alt Text
EventServiceProvider.php (881 B)

Event Timeline