diff --git a/app/Events/TaskDateUpdated.php b/app/Events/TaskDateUpdated.php deleted file mode 100644 index dcf7fa1..0000000 --- a/app/Events/TaskDateUpdated.php +++ /dev/null @@ -1,53 +0,0 @@ -userId = $userId; - $this->task = $task; - $this->event = $event; - $this->start = $start; - $this->end = $end; - $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 'task.date.updated'; - } -}