From 04ac2c7401fbabdb484c349a9d684570940c9ece Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Fri, 1 Mar 2019 14:33:51 +0100 Subject: [PATCH] removed versionadded, fixed count and note which behaves like versionadded --- controller/argument_value_resolver.rst | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/controller/argument_value_resolver.rst b/controller/argument_value_resolver.rst index 5aae993f2e9..49e3b2adfc6 100644 --- a/controller/argument_value_resolver.rst +++ b/controller/argument_value_resolver.rst @@ -15,11 +15,7 @@ functionality. Functionality Shipped with the HttpKernel ----------------------------------------- -.. versionadded:: 3.3 - - The ``SessionValueResolver`` and ``ServiceValueResolver`` were both added in Symfony 3.3. - -Symfony ships with five value resolvers in the HttpKernel component: +Symfony ships with the following value resolvers in the HttpKernel component: :class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestAttributeValueResolver` Attempts to find a request attribute that matches the name of the argument. @@ -46,11 +42,6 @@ Symfony ships with five value resolvers in the HttpKernel component: argument list. When the action is called, the last (variadic) argument will contain all the values of this array. -.. note:: - - Prior to Symfony 3.1, this logic was resolved within the ``ControllerResolver``. - The old functionality is rewritten to the aforementioned value resolvers. - Adding a Custom Value Resolver ------------------------------