mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-02 11:29:41 +00:00
- adapt event templates - event bundle: fix deprecated deps injections - fix error with n=0 not iterated into querybuilder with centers loop
26 lines
924 B
YAML
26 lines
924 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'
|