From 86dbe527d8fb1b9f54e9c7543cc9c5351d13623c Mon Sep 17 00:00:00 2001 From: Marc Ducobu Date: Tue, 11 May 2021 09:43:20 +0200 Subject: [PATCH] Adding missing arguments for services --- src/Bundle/ChillPersonBundle/config/services.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/config/services.yaml b/src/Bundle/ChillPersonBundle/config/services.yaml index 3d7450768..e4924d0c3 100644 --- a/src/Bundle/ChillPersonBundle/config/services.yaml +++ b/src/Bundle/ChillPersonBundle/config/services.yaml @@ -3,7 +3,6 @@ parameters: services: - chill.person.form.type.select2maritalstatus: class: Chill\PersonBundle\Form\Type\Select2MaritalStatusType arguments: @@ -27,7 +26,7 @@ services: public: true tags: - { name: chill.timeline, context: 'person' } - + chill.person.birthdate_validation: class: Chill\PersonBundle\Validator\Constraints\BirthdateValidator arguments: @@ -37,4 +36,6 @@ services: Chill\PersonBundle\Repository\: resource: '../Repository/' + arguments: + - '@Doctrine\Persistence\ManagerRegistry' tags: ['doctrine.repository_service']