You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For instance, in this example we used the [Symfony HTTP Client](https://symfony.com/doc/current/http_client.md).
20
+
For instance, in this example we used the [Symfony HTTP Client](https://symfony.com/doc/current/http_client.html).
21
21
22
22
23
23
## Setting the client options [_setting_the_client_options]
24
24
25
25
If you want you can set the options for a specific PSR-18 client using the `ClientBuilder::setHttpClientOptions($options)` method. The `$options` is an array of key:value options that are specifics to the HTTP client used.
26
26
27
-
For instance, if you are using Guzzle (default) and you need to use a [proxy](https://docs.guzzlephp.org/en/stable/request-options.md#proxy) you can use the following settings:
27
+
For instance, if you are using Guzzle (default) and you need to use a [proxy](https://docs.guzzlephp.org/en/stable/request-options.html#proxy) you can use the following settings:
28
28
29
29
```php
30
30
$client = ClientBuilder::create()
@@ -121,5 +121,5 @@ $promise->then(
121
121
);
122
122
```
123
123
124
-
More information about Promise are available at the [HTTPlug documentation page](https://docs.php-http.org/en/latest/components/promise.md).
124
+
More information about Promise are available at the [HTTPlug documentation page](https://docs.php-http.org/en/latest/components/promise.html).
0 commit comments