diff --git a/controller/error_pages.rst b/controller/error_pages.rst index a32316c8410..d01182a48eb 100644 --- a/controller/error_pages.rst +++ b/controller/error_pages.rst @@ -207,7 +207,7 @@ configuration option to point to it: # app/config/config.yml twig: - exception_controller: AppBundle:Exception:showException + exception_controller: AppBundle:Exception:showAction .. code-block:: xml @@ -222,7 +222,7 @@ configuration option to point to it: https://symfony.com/schema/dic/twig/twig-1.0.xsd"> - AppBundle:Exception:showException + AppBundle:Exception:showAction @@ -231,7 +231,7 @@ configuration option to point to it: // app/config/config.php $container->loadFromExtension('twig', [ - 'exception_controller' => 'AppBundle:Exception:showException', + 'exception_controller' => 'AppBundle:Exception:showAction', // ... ]);