mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-25 19:46:13 +00:00
Those type allow easily to - pick a Scope/circle in form - pick a user in form
18 lines
660 B
YAML
18 lines
660 B
YAML
services:
|
|
chill.main.countries_repository:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ["@doctrine.orm.entity_manager", getRepository]
|
|
arguments:
|
|
- "Chill\\MainBundle\\Entity\\Country"
|
|
|
|
chill.main.user_repository:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ["@doctrine.orm.entity_manager", getRepository]
|
|
arguments:
|
|
- "Chill\\MainBundle\\Entity\\User"
|
|
|
|
chill.main.scope_repository:
|
|
class: Doctrine\ORM\EntityRepository
|
|
factory: ["@doctrine.orm.entity_manager", getRepository]
|
|
arguments:
|
|
- "Chill\\MainBundle\\Entity\\Scope" |