From cb0ee3b74d41f1abeae5449e68fbcac2f4f2c424 Mon Sep 17 00:00:00 2001 From: Florian Blond Date: Fri, 13 Apr 2018 10:40:09 +0200 Subject: [PATCH] class attribute still needed in some cases --- reference/dic_tags.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/dic_tags.rst b/reference/dic_tags.rst index 1b2825dfa78..b1b84739b54 100644 --- a/reference/dic_tags.rst +++ b/reference/dic_tags.rst @@ -1263,7 +1263,7 @@ also have to be added as regular services: .. code-block:: yaml services: - Twig_Extensions_Extension_Intl: + Twig\Extensions\IntlExtension: tags: [twig.extension] .. code-block:: xml @@ -1275,7 +1275,7 @@ also have to be added as regular services: http://symfony.com/schema/dic/services/services-1.0.xsd"> - + @@ -1284,7 +1284,7 @@ also have to be added as regular services: .. code-block:: php $container - ->register('Twig_Extensions_Extension_Intl') + ->register('Twig\Extensions\IntlExtension') ->addTag('twig.extension') ;