> */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], TwoFAccountDeleted::class => [ CleanIconStorage::class, ], GroupDeleting::class => [ DissociateTwofaccountFromGroup::class, ], GroupDeleted::class => [ ResetUsersPreference::class, ], ScanForNewReleaseCalled::class => [ ReleaseRadar::class, ], SocialiteWasCalled::class => [ RegisterOpenId::class, ], NotificationSent::class => [ LogNotification::class, ], ]; /** * The model observers for your application. * * @var array> */ protected $observers = [ User::class => [UserObserver::class], ]; /** * Register any events for your application. * * @return void */ public function boot() { // } /** * Determine if events and listeners should be automatically discovered. */ public function shouldDiscoverEvents() : bool { return false; } }