Skip to content

Commit 6c9b86b

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: Deprecate all occurrences of ArgumentValueResolverInterface
2 parents 7af3d9f + adf5835 commit 6c9b86b

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

components/http_kernel.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,19 @@ of arguments that should be passed when executing that callable.
335335
available through the `variadic`_ argument.
336336

337337
This functionality is provided by resolvers implementing the
338-
:class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface`.
338+
:class:`Symfony\\Component\\HttpKernel\\Controller\\ValueResolverInterface`.
339339
There are four implementations which provide the default behavior of
340340
Symfony but customization is the key here. By implementing the
341-
``ArgumentValueResolverInterface`` yourself and passing this to the
341+
``ValueResolverInterface`` yourself and passing this to the
342342
``ArgumentResolver``, you can extend this functionality.
343343

344+
.. versionadded:: 6.2
345+
346+
The ``ValueResolverInterface`` was introduced in Symfony 6.2. Prior to
347+
6.2, you had to use the
348+
:class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface`,
349+
which defines different methods.
350+
344351
.. _component-http-kernel-calling-controller:
345352

346353
5) Calling the Controller

reference/dic_tags.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,17 @@ controller.argument_value_resolver
333333
**Purpose**: Register a value resolver for controller arguments such as ``Request``
334334

335335
Value resolvers implement the
336-
:class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface`
336+
:class:`Symfony\\Component\\HttpKernel\\Controller\\ValueResolverInterface`
337337
and 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+
340347
data_collector
341348
--------------
342349

0 commit comments

Comments
 (0)