File tree 2 files changed +17
-3
lines changed
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -340,12 +340,19 @@ of arguments that should be passed when executing that callable.
340
340
available through the `variadic `_ argument.
341
341
342
342
This functionality is provided by resolvers implementing the
343
- :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `.
343
+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ValueResolverInterface `.
344
344
There are four implementations which provide the default behavior of
345
345
Symfony but customization is the key here. By implementing the
346
- ``ArgumentValueResolverInterface `` yourself and passing this to the
346
+ ``ValueResolverInterface `` yourself and passing this to the
347
347
``ArgumentResolver ``, you can extend this functionality.
348
348
349
+ .. versionadded :: 6.2
350
+
351
+ The ``ValueResolverInterface `` was introduced in Symfony 6.2. Prior to
352
+ 6.2, you had to use the
353
+
8000
:class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `,
354
+ which defines different methods.
355
+
349
356
.. _component-http-kernel-calling-controller :
350
357
351
358
5) Calling the Controller
Original file line number Diff line number Diff line change @@ -333,10 +333,17 @@ controller.argument_value_resolver
333
333
**Purpose **: Register a value resolver for controller arguments such as ``Request ``
334
334
335
335
Value resolvers implement the
336
- :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ArgumentValueResolverInterface `
336
+ :class: `Symfony\\ Component\\ HttpKernel\\ Controller\\ ValueResolverInterface `
337
337
and are used to resolve argument values for controllers as described here:
338
338
:doc: `/controller/argument_value_resolver `.
339
339
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
+
340
347
data_collector
341
348
--------------
342
349
You can’t perform that action at this time.
0 commit comments