8000 [HttpClient] Fixed some wrong class FQCN by javiereguiluz · Pull Request #11630 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[HttpClient] Fixed some wrong class FQCN #11630

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference/configuration/framework.rst
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ http_client

When the HttpClient component is installed, an HTTP client is available
as a service named ``http_client`` or using the autowiring alias
:class:`Symfony\\Constracts\\HttpClient\\HttpClientInterface`.
:class:`Symfony\\Contracts\\HttpClient\\HttpClientInterface`.

This service can be configured using ``framework.http_client.default_options``:

Expand Down Expand Up @@ -722,7 +722,7 @@ use default options.

Each scoped client also defines a corresponding named autowiring alias.
If you use for example
``Symfony\Constracts\HttpClient\HttpClientInterface $myApiClient``
``Symfony\Contracts\HttpClient\HttpClientInterface $myApiClient``
as the type and name of an argument, autowiring will inject the ``my_api.client``
service into your autowired classes.

Expand Down
0