25 lines
		
	
	
		
			555 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			555 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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 = [
 | 
						|
        // Registered::class => [
 | 
						|
        //     SendEmailVerificationNotification::class,
 | 
						|
        // ],
 | 
						|
    ];
 | 
						|
    public function boot(): void
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
    public function shouldDiscoverEvents(): bool
 | 
						|
    {
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
}
 |