From d4092a5a3e3ebd2a7e92e141c50203c6ba17f89f Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Sat, 28 Mar 2026 15:27:06 +0100 Subject: [PATCH] remove UserCreated event --- app/Events/UserCreated.php | 45 -------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 app/Events/UserCreated.php diff --git a/app/Events/UserCreated.php b/app/Events/UserCreated.php deleted file mode 100644 index a27ee47..0000000 --- a/app/Events/UserCreated.php +++ /dev/null @@ -1,45 +0,0 @@ -user = $user; - $this->notificationId = $notificationId; - } - - /** - * Get the channels the event should broadcast on. - * - * @return array - */ - public function broadcastOn(): array - { - return [ - new privateChannel('users.admin'), - ]; - } - - public function broadcastAs() - { - return 'users.registration'; - } -}