Skip to content
This repository was archived by the owner on Apr 27, 2023. It is now read-only.

Commit d397510

Browse files
gokureGang Wu
authored and
Gang Wu
committed
Update README.md
1 parent 30459e1 commit d397510

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Implements HTTP client for Hyperf via [laravel/framework](https://github.com/lar
66

77
HTTP Client is an expressive, minimal API around the [Guzzle HTTP client](http://docs.guzzlephp.org/en/stable/) that implements from Laravel, allowing you to quickly make outgoing HTTP requests to communicate with other web applications.
88

9-
Before getting started, you should ensure that you have installed the Guzzle package as a dependency of your application. By default, Laravel automatically includes this dependency. However, if you have previously removed the package, you may install it again via Composer:
9+
Before getting started, you should ensure that you have installed the Guzzle package as a dependency of your application. By default, Hyperf automatically includes this dependency. However, if you have previously removed the package, you may install it again via Composer:
1010

1111
```sh
1212
composer require guzzlehttp/guzzle
@@ -170,7 +170,7 @@ If the given timeout is exceeded, an instance of `Gokure\Http\Client\ConnectionE
170170

171171
### Retries
172172

173-
If you would like HTTP client to automatically retry the request if a client or server error occurs, you may use the `retry` method. The `retry` method accepts two arguments: the maximum number of times the request should be attempted and the number of milliseconds that Laravel should wait in between attempts:
173+
If you would like HTTP client to automatically retry the request if a client or server error occurs, you may use the `retry` method. The `retry` method accepts two arguments: the maximum number of times the request should be attempted, and the number of milliseconds that Hyperf should wait in between attempts:
174174

175175
```php
176176
$response = Http::retry(3, 100)->post(...);
@@ -180,7 +180,7 @@ If all of the requests fail, an instance of `Gokure\Http\Client\RequestException
180180

181181
### Error Handling
182182

183-
Unlike Guzzle's default behavior, Laravel's HTTP client wrapper does not throw exceptions on client or server errors (`400` and `500` level responses from servers). You may determine if one of these errors was returned using the `successful`, `clientError`, or `serverError` methods:
183+
Unlike Guzzle's default behavior, Hyperf's HTTP client wrapper does not throw exceptions on client or server errors (`400` and `500` level responses from servers). You may determine if one of these errors was returned using the `successful`, `clientError`, or `serverError` methods:
184184

185185
```php
186186
// Determine if the status code is >= 200 and < 300...
@@ -273,7 +273,7 @@ return $responses['first']->ok();
273273

274274
## Testing
275275

276-
Many Laravel services provide functionality to help you easily and expressively write tests, and Laravel's HTTP wrapper is no exception. The `Http` facade's `fake` method allows you to instruct the HTTP client to return stubbed / dummy responses when requests are made.
276+
Many Hyperf services provide functionality to help you easily and expressively write tests, and Hyperf's HTTP wrapper is no exception. The `Http` facade's `fake` method allows you to instruct the HTTP client to return stubbed / dummy responses when requests are made.
277277

278278
### Faking Responses
279279

0 commit comments

Comments
 (0)