cleanup code

This commit is contained in:
team2
2026-02-27 15:49:01 +01:00
parent a5a6f466f3
commit 44be40a24d
4 changed files with 14 additions and 55 deletions

View File

@@ -9,13 +9,13 @@ use App\Ingest\IngestFlow;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\Uid\Uuid;
final class IngestOrchestrator
final readonly class IngestOrchestrator
{
public function __construct(
private readonly LockService $lockService,
private readonly IngestJobService $jobService,
private readonly EntityManagerInterface $em,
private readonly IngestFlow $ingestFlow,
private LockService $lockService,
private IngestJobService $jobService,
private EntityManagerInterface $em,
private IngestFlow $ingestFlow,
)
{
}