fix: Autowire and autoconfigure services in chill_main.

This commit does not remove services that are not automatically PSR loaded.
This commit is contained in:
Pol Dellaiera
2021-11-18 08:49:43 +01:00
parent 78615519f4
commit 9f06bc7126
23 changed files with 108 additions and 104 deletions

View File

@@ -8,28 +8,21 @@ services:
Chill\MainBundle\Repository\:
resource: '../Repository/'
autowire: true
autoconfigure: true
Chill\MainBundle\Repository\UserACLAwareRepositoryInterface: '@Chill\MainBundle\Repository\UserACLAwareRepository'
Chill\MainBundle\Serializer\Normalizer\:
resource: '../Serializer/Normalizer'
autoconfigure: true
autowire: true
tags:
- { name: 'serializer.normalizer', priority: 64 }
Chill\MainBundle\Form\Type\:
resource: '../Form/Type'
autoconfigure: true
autowire: true
tags:
- { name: form.type }
Chill\MainBundle\Doctrine\Event\:
resource: '../Doctrine/Event/'
autowire: true
tags:
- { name: 'doctrine.event_subscriber' }