From bfec1752e093eabcbe36d3ddf4115dfa71ce5019 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Sat, 28 Mar 2026 15:49:58 +0100 Subject: [PATCH] delete EventParticipationCancelled event --- app/Events/EventParticipationCancelled.php | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 app/Events/EventParticipationCancelled.php diff --git a/app/Events/EventParticipationCancelled.php b/app/Events/EventParticipationCancelled.php deleted file mode 100644 index 015ba90..0000000 --- a/app/Events/EventParticipationCancelled.php +++ /dev/null @@ -1,47 +0,0 @@ -userId = $userId; - $this->event = $event; - $this->notificationId = $notificationId; - } - - /** - * Get the channels the event should broadcast on. - * - * @return array - */ - public function broadcastOn(): array - { - return [ - new PrivateChannel('user.' . $this->userId), - ]; - } - - public function broadcastAs() - { - return 'event.participation.cancelled'; - } -}