feat: extract participant draft field applier

This commit is contained in:
Björn Fromme
2026-04-12 14:40:05 +02:00
parent 2597318488
commit 98dd685679
3 changed files with 227 additions and 245 deletions
@@ -14,6 +14,7 @@ use App\Form\Model\BookingDto;
use App\Form\Model\ParticipantDto;
use App\Repository\BookingEditDraftRepository;
use App\Service\BookingEditDraftService;
use App\Service\BookingEditDraftParticipantApplier;
use App\Service\BookingFingerprintService;
use Doctrine\ORM\EntityManagerInterface;
use PHPUnit\Framework\TestCase;
@@ -36,6 +37,7 @@ class BookingEditDraftServiceMutabilityTest extends TestCase
$this->createMock(BookingEditDraftRepository::class),
$this->createMock(EntityManagerInterface::class),
$this->createMock(BookingFingerprintService::class),
new BookingEditDraftParticipantApplier(),
new NullLogger(),
);
}