[ SendSignInActivityNotification::class, ], UserWasActivated::class => [ SendUserActivatedNotification::class, ], UserWasPurged::class => [ SendUserPurgedNotification::class, ], UserWasSuspended::class => [ SendUserSuspendedNotification::class, ], ]; public function register(): void { $this->app->register(RelationshipServiceProvider::class); $this->app->singleton(GetAuthenticatedUserContext::class, fn () => new GetAuthenticatedUserContext); } public function boot(): void { $this->registerEvents(); } }