fix: add missing LoggerInterface dependency to BookingDataProcessorTest

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