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'; - } -}