From b5b956b1d1c0d32a71f7751e3711cab18e9b36a1 Mon Sep 17 00:00:00 2001 From: mohammad jalmoudy Date: Sun, 14 Dec 2025 01:43:55 +0330 Subject: [PATCH] remove https from async request --- src/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index 1939977..a3adac5 100644 --- a/src/index.php +++ b/src/index.php @@ -20,7 +20,7 @@ echo $response->getHeaderLine('content-type') . PHP_EOL; echo $response->getBody() . PHP_EOL; // asynchronous -$request = new Request('GET', 'https://httpbin.org'); +$request = new Request('GET', 'http://httpbin.org'); $promise = $client ->sendAsync($request)