algolia / algoliasearch-client-php

⚡️ A fully-featured and blazing-fast PHP API client to interact with Algolia.
https://www.algolia.com/doc/api-client/php/getting-started/
MIT License
671 stars 116 forks source link

[PHP 8.4] Fix: Curl `CURLOPT_BINARYTRANSFER` deprecated #729

Closed Ayesh closed 7 months ago

Ayesh commented 7 months ago
Q A
Bug fix? yes
New feature? no
BC breaks? no
Related Issue
Need Doc update no

Describe your change

The CURLOPT_BINARYTRANSFER PHP constant from the Curl extension was no-op since PHP 5.1, and is deprecated in PHP 8.4. This removes the constant usage to avoid the deprecation notice in PHP 8.4 and later.

Because this constant was no-op since PHP 5.1 (circa 2005), this change has no impact.

See:

What problem is this fixing?

Fixes PHP 8.4 deprecation notice.