1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
- namespace App\Providers;
-
- use Illuminate\Auth\Events\Registered;
- use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
- use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
- use Illuminate\Support\Facades\Event;
-
- class EventServiceProvider extends ServiceProvider
- {
-
-
- protected $listen = [
- Registered::class => [
- SendEmailVerificationNotification::class,
- ],
- ];
-
-
-
- public function boot(): void
- {
-
- }
-
-
-
- public function shouldDiscoverEvents(): bool
- {
- return false;
- }
- }
|