X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fphp_http_client_curl_user.c;h=66edae664db2677cf0ef1490df05740415988cd1;hb=refs%2Ftags%2FRELEASE_3_1_0_BETA2;hp=225ce1cda8aa8828856880b7d5d23b1e0b6e3227;hpb=28d7c572181c8c3c335edd3df539f75c3bbde0fd;p=m6w6%2Fext-http diff --git a/src/php_http_client_curl_user.c b/src/php_http_client_curl_user.c index 225ce1c..66edae6 100644 --- a/src/php_http_client_curl_user.c +++ b/src/php_http_client_curl_user.c @@ -260,7 +260,8 @@ zend_class_entry *php_http_client_curl_user_get_class_entry() } ZEND_BEGIN_ARG_INFO_EX(ai_init, 0, 0, 1) - ZEND_ARG_TYPE_INFO(0, run, IS_CALLABLE, 0) + /* using IS_CALLABLE type hint would create a forwards compatibility break */ + ZEND_ARG_INFO(0, run) ZEND_END_ARG_INFO(); ZEND_BEGIN_ARG_INFO_EX(ai_timer, 0, 0, 1) #if PHP_VERSION_ID >= 70000