From eb57c44e7bdcfbb8b9c4323b755edfb8de9f7e3c Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Sun, 3 May 2026 02:35:08 +0000 Subject: [PATCH] Remove deprecated curl_close() call (PHP 8.5) Refs: CLO-4294 --- src/Pay/Adapter.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Pay/Adapter.php b/src/Pay/Adapter.php index b048231..6cf751d 100644 --- a/src/Pay/Adapter.php +++ b/src/Pay/Adapter.php @@ -397,8 +397,6 @@ protected function call(string $method, string $url, array $params = [], array $ $this->handleError($responseStatus, $responseBody); } - curl_close($ch); - return $responseBody; }