8000 Merge branch '6.2' into 6.3 · symfony/symfony-docs@0ebcb29 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0ebcb29

Browse files
committed
Merge branch '6.2' into 6.3
* 6.2: Fix comma space Deprecate all occurrences of ArgumentValueResolverInterface
2 parents 73ca662 + 9ffee2b commit 0ebcb29

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

components/http_kernel.rst

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

342342
This functionality is provided by resolvers implementing the
343-
:class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface`.
343+
:class:`Symfony\\Component\\HttpKernel\\Controller\\ValueResolverInterface`.
344344
There are four implementations which provide the default behavior of
345345
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
347347
``ArgumentResolver``, you can extend this functionality.
348348

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+
:class:`Symfony\\Component\\HttpKernel\\Controller\\ArgumentValueResolverInterface`,
354+
which defines different methods.
355+
349356
.. _component-http-kernel-calling-controller:
350357

351358
5) Calling the Controller

http_client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ that requires HTTPlug dependencies::
16701670
}
16711671

16721672
Because :class:`Symfony\\Component\\HttpClient\\HttplugClient` implements the
1673-
three interfaces,you can use it this way::
1673+
three interfaces, you can use it this way::
16741674

16751675
use Symfony\Component\HttpClient\HttplugClient;
16761676

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)
0