mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 01:34:23 +00:00
26 lines
936 B
YAML
26 lines
936 B
YAML
services:
|
|
|
|
chill_event.repository.event:
|
|
class: Chill\EventBundle\Repository\EventRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\EventBundle\Entity\Event'
|
|
|
|
chill_event.repository.participation:
|
|
class: Chill\EventBundle\Repository\ParticipationRepository
|
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
|
arguments:
|
|
- 'Chill\EventBundle\Entity\Participation'
|
|
|
|
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'
|