Skip to content

Move HTTP client docs from components to guides #13916

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
Jun 30, 2020
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion _build/redirection_map
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@
/doctrine/pdo_session_storage /session/database
/doctrine/mongodb_session_storage /session/database
/components/dotenv https://github.com/symfony/dotenv
/components/mercure https://github.com/symfony/mercure
/components/mercure /mercure
/components/polyfill_apcu https://github.com/symfony/polyfill-apcu
/components/polyfill_ctype https://github.com/symfony/polyfill-ctype
/components/polyfill_iconv https://github.com/symfony/polyfill-iconv
Expand All @@ -504,3 +504,4 @@
/components/error_handler https://github.com/symfony/error-handler
/components/class_loader https://github.com/symfony/class-loader
/frontend/encore/versus-assetic /frontend
/components/http_client /http_client
4 changes: 2 additions & 2 deletions components/browser_kit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The BrowserKit Component
In Symfony versions prior to 4.3, the BrowserKit component could only make
internal requests to your application. Starting from Symfony 4.3, this
component can also :ref:`make HTTP requests to any public site <component-browserkit-external-requests>`
when using it in combination with the :doc:`HttpClient component </components/http_client>`.
when using it in combination with the :doc:`HttpClient component </http_client>`.

Installation
------------
Expand Down Expand Up @@ -295,7 +295,7 @@ So far, all the examples in this article have assumed that you are making
internal requests to your own application. However, you can run the exact same
examples when making HTTP requests to external web sites and applications.

First, install and configure the :doc:`HttpClient component </components/http_client>`.
First, install and configure the :doc:`HttpClient component </http_client>`.
Then, use the :class:`Symfony\\Component\\BrowserKit\\HttpBrowser` to create
the client that will make the external HTTP requests::

Expand Down
Loading