[ServerInstalledNotification::class], ]; protected $subscribe = [ AuthenticationListener::class, RevocationListener::class, TwoFactorListener::class, ]; protected static $shouldDiscoverEvents = false; /** * Register any events for your application. */ public function boot(): void { parent::boot(); User::observe(UserObserver::class); Server::observe(ServerObserver::class); Subuser::observe(SubuserObserver::class); EggVariable::observe(EggVariableObserver::class); } }