46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Providers;
 | |
| 
 | |
| use App\Events\ProxyStarted;
 | |
| use App\Listeners\MaintenanceModeDisabledNotification;
 | |
| use App\Listeners\MaintenanceModeEnabledNotification;
 | |
| use App\Listeners\ProxyStartedNotification;
 | |
| use Illuminate\Foundation\Events\MaintenanceModeDisabled;
 | |
| use Illuminate\Foundation\Events\MaintenanceModeEnabled;
 | |
| use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
 | |
| use SocialiteProviders\Authentik\AuthentikExtendSocialite;
 | |
| use SocialiteProviders\Azure\AzureExtendSocialite;
 | |
| use SocialiteProviders\Infomaniak\InfomaniakExtendSocialite;
 | |
| use SocialiteProviders\Manager\SocialiteWasCalled;
 | |
| 
 | |
| class EventServiceProvider extends ServiceProvider
 | |
| {
 | |
|     protected $listen = [
 | |
|         MaintenanceModeEnabled::class => [
 | |
|             MaintenanceModeEnabledNotification::class,
 | |
|         ],
 | |
|         MaintenanceModeDisabled::class => [
 | |
|             MaintenanceModeDisabledNotification::class,
 | |
|         ],
 | |
|         SocialiteWasCalled::class => [
 | |
|             AzureExtendSocialite::class.'@handle',
 | |
|             AuthentikExtendSocialite::class.'@handle',
 | |
|             InfomaniakExtendSocialite::class.'@handle',
 | |
|         ],
 | |
|         ProxyStarted::class => [
 | |
|             ProxyStartedNotification::class,
 | |
|         ],
 | |
|     ];
 | |
| 
 | |
|     public function boot(): void
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
|     public function shouldDiscoverEvents(): bool
 | |
|     {
 | |
|         return false;
 | |
|     }
 | |
| }
 | 
