From 45d8931267931b367b3ec8906a9d6fe3fe6426f3 Mon Sep 17 00:00:00 2001 From: whwyy Date: Fri, 3 Jul 2026 15:06:12 +0800 Subject: [PATCH] eee --- CurlClient.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CurlClient.php b/CurlClient.php index 313654b..cbbfb3e 100644 --- a/CurlClient.php +++ b/CurlClient.php @@ -186,7 +186,9 @@ class CurlClient extends ClientAbstracts */ public function close(): void { - curl_close($this->client); + if (PHP_VERSION < 80000) { + curl_close($this->client); + } }