mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-25 11:36:13 +00:00
22 lines
1.0 KiB
YAML
22 lines
1.0 KiB
YAML
services:
|
|
chill.person.repository.person:
|
|
class: Chill\PersonBundle\Person\PersonRepository
|
|
deprecated: the service '%service_id%' is deprecated since 2019-10-30 and will be removed soon. Use 'Chill\PersonBundle\Repository\PersonRepository' instead
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\PersonBundle\Entity\Person'
|
|
|
|
Chill\PersonBundle\Repository\PersonRepository:
|
|
class: Chill\PersonBundle\Person\PersonRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\PersonBundle\Entity\Person'
|
|
|
|
Chill\PersonBundle\Repository\ClosingMotiveRepository:
|
|
class: Chill\PersonBundle\Repository\ClosingMotiveRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\PersonBundle\Entity\AccompanyingPeriod\ClosingMotive'
|
|
tag:
|
|
- { name: doctrine.repository_service }
|