File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -347,12 +347,19 @@ of arguments that should be passed when executing that callable.
347347 available through the `variadic `_ argument.
348348
349349 This functionality is provided by resolvers implementing the
350- :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `.
350+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ValueResolverInterface `.
351351 There are four implementations which provide the default behavior of
352352 Symfony but customization is the key here. By implementing the
353- ``ArgumentValueResolverInterface `` yourself and passing this to the
353+ ``ValueResolverInterface `` yourself and passing this to the
354354 ``ArgumentResolver ``, you can extend this functionality.
355355
356+ .. versionadded :: 6.2
357+
358+ The ``ValueResolverInterface `` was introduced in Symfony 6.2. Prior to
359+ 6.2, you had to use the
360+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `,
361+ which defines different methods.
362+
356363.. _component-http-kernel-calling-controller :
357364
3583655) Calling the Controller
Original file line number Diff line number Diff line change @@ -333,10 +333,17 @@ controller.argument_value_resolver
333333**Purpose **: Register a value resolver for controller arguments such as ``Request ``
334334
335335Value resolvers implement the
336- :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `
336+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ValueResolverInterface `
337337and are used to resolve argument values for controllers as described here:
338338:doc: `/controller/argument_value_resolver `.
339339
340+ .. versionadded :: 6.2
341+
342+ The ``ValueResolverInterface `` was introduced in Symfony 6.2. Prior to
343+ 6.2, you had to use the
344+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `,
345+ which defines different methods.
346+
340347data_collector
341348--------------
342349
You can’t perform that action at this time.
0 commit comments