diff --git a/app/Events/VolunteerUnassignedFromTask.php b/app/Events/VolunteerUnassignedFromTask.php deleted file mode 100644 index 14f370b..0000000 --- a/app/Events/VolunteerUnassignedFromTask.php +++ /dev/null @@ -1,49 +0,0 @@ -userId = $userId; - $this->task = $task; - $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 'volunteer.unassigned.to.task'; - } -}