Skip to content

Commit 8dc56fc

Browse files
Update README.md
1 parent 578ee73 commit 8dc56fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ composer require async-http/async-http
2323
## Example
2424

2525
```php
26-
use AsyncHttp\Http\AsyncHttpClient;
26+
use Async\Http\AsyncHttpClient;
2727

2828
$client = new AsyncHttpClient();
2929
foreach ($client->get('https://jsonplaceholder.typicode.com/posts/1') as $response) {
@@ -34,8 +34,8 @@ foreach ($client->get('https://jsonplaceholder.typicode.com/posts/1') as $respon
3434
## Parallel Requests
3535

3636
```php
37-
use AsyncHttp\Http\AsyncHttpClient;
38-
use AsyncHttp\Http\MultiAsyncHandler;
37+
use Async\Http\AsyncHttpClient;
38+
use Async\Http\MultiAsyncHandler;
3939

4040
$client = new AsyncHttpClient();
4141
$multi = new MultiAsyncHandler();

0 commit comments

Comments
 (0)