This commit is contained in:
2026-07-03 15:06:12 +08:00
parent 7bcb789ed2
commit 45d8931267
+3 -1
View File
@@ -186,7 +186,9 @@ class CurlClient extends ClientAbstracts
*/ */
public function close(): void public function close(): void
{ {
curl_close($this->client); if (PHP_VERSION < 80000) {
curl_close($this->client);
}
} }