diff --git a/app/DAL/Studies/IUserStudyLister.php b/app/DAL/Studies/IUserStudyLister.php index 0b6bf55..64d0973 100644 --- a/app/DAL/Studies/IUserStudyLister.php +++ b/app/DAL/Studies/IUserStudyLister.php @@ -2,8 +2,8 @@ namespace App\DAL\Studies; +use App\Domain\Report\ReportStatus; use App\Domain\Study\StudyLevelStatus; -use App\Models\Enums\ReportStatus; use Illuminate\Contracts\Database\Eloquent\Builder; use Illuminate\Contracts\Pagination\LengthAwarePaginator; diff --git a/app/DAL/Studies/WorklistBase.php b/app/DAL/Studies/WorklistBase.php index 290cf45..39db9bd 100644 --- a/app/DAL/Studies/WorklistBase.php +++ b/app/DAL/Studies/WorklistBase.php @@ -2,8 +2,8 @@ namespace App\DAL\Studies; +use App\Domain\Report\ReportStatus; use App\Domain\Study\StudyLevelStatus; -use App\Models\Enums\ReportStatus; use App\Models\Study; use Carbon\Carbon; use Illuminate\Contracts\Database\Eloquent\Builder; diff --git a/app/Models/Enums/ReportStatus.php b/app/Domain/Report/ReportStatus.php similarity index 83% rename from app/Models/Enums/ReportStatus.php rename to app/Domain/Report/ReportStatus.php index ffbfd41..298a773 100644 --- a/app/Models/Enums/ReportStatus.php +++ b/app/Domain/Report/ReportStatus.php @@ -1,6 +1,6 @@