diff options
author | Kévin Gomez <contact@kevingomez.fr> | 2015-11-11 16:44:57 +0100 |
---|---|---|
committer | Kévin Gomez <contact@kevingomez.fr> | 2015-11-11 16:44:57 +0100 |
commit | b7b20054947676ab0d4c89c3c4a64db4e52db203 (patch) | |
tree | f2ced7b427181e02ff06c7cfc6cca695c6678a96 | |
parent | 6cbbf1481ac56bcd5c9bbf7fe3d7dbb0d3bf1745 (diff) | |
download | wallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.tar.gz wallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.tar.zst wallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.zip |
Fix the creation of the repository services
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/config/services.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index cef4450d..03d33560 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml | |||
@@ -65,15 +65,13 @@ services: | |||
65 | 65 | ||
66 | wallabag_core.entry_repository: | 66 | wallabag_core.entry_repository: |
67 | class: Wallabag\CoreBundle\Repository\EntryRepository | 67 | class: Wallabag\CoreBundle\Repository\EntryRepository |
68 | factory_service: doctrine.orm.default_entity_manager | 68 | factory: [ @doctrine.orm.default_entity_manager, getRepository ] |
69 | factory_method: getRepository | ||
70 | arguments: | 69 | arguments: |
71 | - WallabagCoreBundle:Entry | 70 | - WallabagCoreBundle:Entry |
72 | 71 | ||
73 | wallabag_core.tag_repository: | 72 | wallabag_core.tag_repository: |
74 | class: Wallabag\CoreBundle\Repository\TagRepository | 73 | class: Wallabag\CoreBundle\Repository\TagRepository |
75 | factory_service: doctrine.orm.default_entity_manager | 74 | factory: [ @doctrine.orm.default_entity_manager, getRepository ] |
76 | factory_method: getRepository | ||
77 | arguments: | 75 | arguments: |
78 | - WallabagCoreBundle:Tag | 76 | - WallabagCoreBundle:Tag |
79 | 77 | ||