fix: add missing LoggerInterface dependency to BookingDataProcessorTest

This commit is contained in:
Björn Fromme
2026-01-06 18:46:06 +01:00
parent 6008a1b2d9
commit 192b1fdcf4
@@ -23,6 +23,7 @@ use App\Form\Model\ParticipantDto;
use App\Service\BookingPriceCalculatorService;
use App\Service\InsuranceService;
use PHPUnit\Framework\TestCase;
use Psr\Log\NullLogger;
/**
* Comprehensive test suite for BookingDataProcessor.
@@ -50,7 +51,7 @@ class BookingDataProcessorTest extends TestCase
// Create the new dependencies
$mappingCollector = new ServiceMappingCollector();
$serviceProcessor = new ParticipantServiceProcessor();
$serviceProcessor = new ParticipantServiceProcessor(new NullLogger());
$payloadBuilder = new BookingPayloadBuilder($mappingCollector);
$personalDataSynchronizer = new PersonalDataSynchronizer();