mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-22 18:24:23 +00:00
I also re-arranged the configuration of repositories to a dedicated file, which should improve readability.
13 lines
449 B
YAML
13 lines
449 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"
|