From 11a399fcb03d8c131717d3cf36fffbdef591c5b2 Mon Sep 17 00:00:00 2001 From: fermatmind <17551046983@163.com> Date: Tue, 4 Aug 2026 14:17:40 +0800 Subject: [PATCH] fix(career): add missing CareerJobListItemBundle import Add use App\DTO\Career\CareerJobListItemBundle to CareerJobListBundleBuilder. The class was moved to App\DTO\Career but the import was not updated, causing CareerDirectory10kOpsWarmValidateCommandTest to fail with 'Class not found'. --- .../app/Services/Career/Bundles/CareerJobListBundleBuilder.php | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/Services/Career/Bundles/CareerJobListBundleBuilder.php b/backend/app/Services/Career/Bundles/CareerJobListBundleBuilder.php index 8ab6689db..44ef73380 100644 --- a/backend/app/Services/Career/Bundles/CareerJobListBundleBuilder.php +++ b/backend/app/Services/Career/Bundles/CareerJobListBundleBuilder.php @@ -7,6 +7,7 @@ use App\Domain\Career\Import\RunStatus; use App\Domain\Career\IndexStateValue; use App\Domain\Career\Publish\CareerRuntimePublishProjectionVisibility; +use App\DTO\Career\CareerJobListItemBundle; use App\Services\Career\Bundles\CareerJobPublicAllowlist; use App\Models\CareerCompileRun; use App\Models\CareerJob;