From 5774751b1b0ab7a22024b052e663b788098eb6a6 Mon Sep 17 00:00:00 2001 From: Anton D Date: Mon, 25 Sep 2023 21:21:55 +0200 Subject: [PATCH] Fix issue #114: GuzzleHttp compatibility --- src/Network/HttpClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/HttpClient.php b/src/Network/HttpClient.php index e3f7d82..668998a 100644 --- a/src/Network/HttpClient.php +++ b/src/Network/HttpClient.php @@ -48,7 +48,7 @@ class HttpClient */ public function __destruct() { - Promise\unwrap(self::$promises); + Promise\Utils::unwrap(self::$promises); } /**