mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-23 18:54:24 +00:00
18 lines
665 B
YAML
18 lines
665 B
YAML
services:
|
|
chill_event.repository.event:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\EventBundle\Entity\Event'
|
|
|
|
chill_event.repository.role:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\EventBundle\Entity\Role'
|
|
|
|
chill_event.repository.status:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\EventBundle\Entity\Status' |