From c3b2b21aafa9e7c636371c2e64ced5d929aa9d1e Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Sun, 3 May 2026 02:34:25 +0000 Subject: [PATCH] Remove deprecated curl_close() call (PHP 8.5) curl_close() has been a no-op since PHP 8.0 and is now formally deprecated in 8.5. The curl handle is freed when the variable goes out of scope. Refs: CLO-4290 --- src/Analytics/Adapter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Analytics/Adapter.php b/src/Analytics/Adapter.php index c340408..aef0fae 100644 --- a/src/Analytics/Adapter.php +++ b/src/Analytics/Adapter.php @@ -184,7 +184,6 @@ public function call(string $method, string $path = '', array $headers = [], arr return $responseBody; } finally { - curl_close($ch); } }