Skip to content

Commit 9c83e2d

Browse files
fix external links (#1436)
(cherry picked from commit c53378e) Co-authored-by: Colleen McGinnis <[email protected]>
1 parent 7aeebd1 commit 9c83e2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/reference/http-client.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ $client = ClientBuilder::create()
1717
->build();
1818
```
1919

20-
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).
2121

2222

2323
## Setting the client options [_setting_the_client_options]
2424

2525
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.
2626

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:
2828

2929
```php
3030
$client = ClientBuilder::create()
@@ -121,5 +121,5 @@ $promise->then(
121121
);
122122
```
123123

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).
125125

0 commit comments

Comments
 (0)