From 309f424d842a934e1d3e0bd2f53f68763b7109d3 Mon Sep 17 00:00:00 2001 From: Christian Schmidt Date: Thu, 29 Jan 2015 21:52:53 +0100 Subject: [PATCH] Follow-up change on #4740 This brings the class names back in sync after the change in PR #4740. --- cookbook/templating/twig_extension.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cookbook/templating/twig_extension.rst b/cookbook/templating/twig_extension.rst index 993a9fa73d4..c939cf7ed53 100644 --- a/cookbook/templating/twig_extension.rst +++ b/cookbook/templating/twig_extension.rst @@ -73,7 +73,7 @@ Now you must let the Service Container know about your newly created Twig Extens # app/config/services.yml services: app.twig_extension: - class: AppBundle\Twig\AcmeExtension + class: AppBundle\Twig\AppExtension tags: - { name: twig.extension } @@ -81,7 +81,7 @@ Now you must let the Service Container know about your newly created Twig Extens - + @@ -92,7 +92,7 @@ Now you must let the Service Container know about your newly created Twig Extens use Symfony\Component\DependencyInjection\Definition; $container - ->register('app.twig_extension', '\AppBundle\Twig\AcmeExtension') + ->register('app.twig_extension', '\AppBundle\Twig\AppExtension') ->addTag('twig.extension'); .. note::