From 7ef94932ec905806e5ee804286945501d830f314 Mon Sep 17 00:00:00 2001 From: "sandesh.as" Date: Mon, 15 Dec 2025 12:45:40 +0530 Subject: [PATCH] Php 8.5 deprecation fix --- src/CurlRequester.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/CurlRequester.php b/src/CurlRequester.php index 515d250..3abf5ed 100644 --- a/src/CurlRequester.php +++ b/src/CurlRequester.php @@ -12,13 +12,6 @@ public function __construct() $this->ch = curl_init(); } - public function __destruct() - { - if (isset($this->ch)) { - curl_close($this->ch); - } - } - public function options($options) { assert(is_array($options));