aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-11-11 16:44:57 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-11 16:44:57 +0100
commitb7b20054947676ab0d4c89c3c4a64db4e52db203 (patch)
treef2ced7b427181e02ff06c7cfc6cca695c6678a96 /src/Wallabag/CoreBundle/Resources/config/services.yml
parent6cbbf1481ac56bcd5c9bbf7fe3d7dbb0d3bf1745 (diff)
downloadwallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.tar.gz
wallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.tar.zst
wallabag-b7b20054947676ab0d4c89c3c4a64db4e52db203.zip
Fix the creation of the repository services
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/config/services.yml')
-rw-r--r--src/Wallabag/CoreBundle/Resources/config/services.yml6
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