From dd5ec92e08851f41b8567f7bcb6bc46a671dc3a5 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Sun, 24 Apr 2022 17:26:35 +0200 Subject: [PATCH] Use FQCN as service name for form types --- src/Wallabag/CoreBundle/Resources/config/services.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index 041e1d294..6265db3e6 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -6,7 +6,7 @@ services: - "%wallabag_core.theme%" # custom form type - wallabag_core.form.type.config: + Wallabag\CoreBundle\Form\Type\ConfigType: class: Wallabag\CoreBundle\Form\Type\ConfigType arguments: - "%liip_theme.themes%" @@ -14,7 +14,7 @@ services: tags: - { name: form.type } - wallabag_core.filter.type.entry: + Wallabag\CoreBundle\Form\Type\EntryFilterType: class: Wallabag\CoreBundle\Form\Type\EntryFilterType arguments: - "@wallabag_core.entry_repository"