coolify/app/Providers/EventServiceProvider.php

25 lines
555 B
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?php
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
protected $listen = [
2023-12-04 15:08:24 +01:00
// Registered::class => [
// SendEmailVerificationNotification::class,
// ],
2023-03-17 15:33:48 +01:00
];
public function boot(): void
{
//
}
public function shouldDiscoverEvents(): bool
{
return false;
}
}