Uh oh!
There was an error while loading. Please reload this page.
Remove deprecated curl_close calls - #21
Conversation
Greptile SummaryThis PR removes the Confidence Score: 5/5This PR is safe to merge — it removes a deprecated no-op without changing any observable behavior. Single-line removal of a deprecated function call that has been a no-op since PHP 8.0. No logic, state management, or API surface is affected. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "Remove deprecated curl_close calls" | Re-trigger Greptile |
Uh oh!
There was an error while loading. Please reload this page.
What does this PR do?
Removes calls to
curl_close(). Since PHP 8.0, cURL handles areCurlHandleobjects andcurl_close()no longer has an effect; handles are released by object lifetime instead. Removing these calls avoids noisy PHP 8.5 deprecation warnings without changing behavior for supported PHP versions.Test Plan
php -lon changed PHP files where applicable.curl_close(...)calls remain in this repository.Related PRs and Issues
N/A
Have you read the Contributing Guidelines on issues?
Yes.