PHP Deprecated: Function curl_close() is deprecated since 8.5, as it has no effect since PHP 8.0 in /MailChimp.php on line 277 https://github.com/drewm/mailchimp-api/blob/62da03fa38a0d3d855486f059c1f917976d02372/src/MailChimp.php#L277 See notes in https://php.watch/versions/8.5/curl_close-curl_share_close-deprecated Suggest a check like: ```php if (PHP_VERSION_ID >= 80000) { unset($ch); } else { curl_close($ch); } ```
PHP Deprecated: Function curl_close() is deprecated since 8.5, as it has no effect since PHP 8.0 in /MailChimp.php on line 277
mailchimp-api/src/MailChimp.php
Line 277 in 62da03f
See notes in https://php.watch/versions/8.5/curl_close-curl_share_close-deprecated
Suggest a check like: