PHP 7.4/RemovedFunctionParameters: handle deprecated curl_version() $age by jrfnl · Pull Request #874 · PHPCompatibility/PHPCompatibility

> The $version parameter of curl_version() is deprecated. If any value not
> equal to the default CURLVERSION_NOW is passed, a warning is raised and the
> parameter is ignored.

Notes:
* While the changelog and the PHP native deprecation message call the parameter `$version`, the documentation calls it `$age`, so that's the parameter name used for the error message.
* Using the `CURL_VERSION_NOW` constant for the value is still fine, so the sniff takes that into account.

Refs:
* https://github.com/php/php-src/blob/86d751f696786bcb95c580482c9884e41ccf2406/UPGRADING#L55-L57
* https://www.php.net/manual/en/function.curl-version.php
* php/php-src@357da6b