From 4d3fc69faab234082228df011807cab8374620f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 2 Jul 2026 09:33:16 +0200 Subject: [PATCH] fix: register field handler in service container correctly --- config/services.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/services.yaml b/config/services.yaml index 28876ee..80958e5 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -183,7 +183,6 @@ services: arguments: $handlers: # Simple handlers with no external dependencies - instantiated directly - - 'App\Form\Service\ParticipantDateOfBirthFieldHandler' - 'App\Form\Service\ParticipantAssignedRoomFieldHandler' - 'App\Form\Service\ParticipantRemarksRoomFieldHandler' - 'App\Form\Service\ParticipantAdditionalServicesFieldHandler' @@ -200,6 +199,7 @@ services: - 'App\Form\Service\ParticipantRentalInsuranceFieldHandler' - 'App\Form\Service\ParticipantLicensePlateFieldHandler' # Complex handlers with dependencies - use service references + - '@App\Form\Service\ParticipantDateOfBirthFieldHandler' - '@App\Form\Service\ParticipantTransportationDiscountReplacementFieldHandler' - '@App\Form\Service\ParticipantBulkInsuranceFieldHandler' - '@App\Form\Service\ParticipantInsuranceFieldHandler'