From 3a775c4f21083fdbfc1241248bf5dad69706a9e8 Mon Sep 17 00:00:00 2001 From: Dr Masroor Ehsan Date: Wed, 29 Jan 2025 23:29:53 +0600 Subject: [PATCH] clean --- app/DAL/Studies/WorklistBase.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/DAL/Studies/WorklistBase.php b/app/DAL/Studies/WorklistBase.php index d6cefd4..dad6288 100644 --- a/app/DAL/Studies/WorklistBase.php +++ b/app/DAL/Studies/WorklistBase.php @@ -48,9 +48,9 @@ public function setRadiologist(int $radiologist_id): self return $this; } - public function setWorkflowLevel(WorkflowLevel $status): self + public function setWorkflowLevel(WorkflowLevel $level): self { - $this->workflowLevel = $status; + $this->workflowLevel = $level; return $this; } @@ -71,7 +71,6 @@ public function get(?int $user_id = null): LengthAwarePaginator $query = $this->applySearch($query); $query = $this->applyRadiologist($query); $query = $this->applyWorkflowLevel($query); - $query = $this->applyReportStatus($query); $query = $this->applyArchived($query); $query = $this->applyLocked($query); $query = $this->applyDateFilters($query);