1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 01:53:58 +01:00

Remove constant visibility

This commit is contained in:
Márk Sági-Kazár 2019-04-15 07:58:14 +02:00 committed by GitHub
parent 909ac9b2c4
commit f5203f739d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,8 +14,9 @@ use Psr\Http\Message\RequestInterface;
*/
class CurlFactory implements CurlFactoryInterface
{
private const CURL_VERSION_STR = 'curl_version';
private const LOW_CURL_VERSION_NUMBER = '7.21.2';
const CURL_VERSION_STR = 'curl_version';
const LOW_CURL_VERSION_NUMBER = '7.21.2';
/** @var array */
private $handles = [];