1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 14:31:06 +02:00

Fix proto of forward_static_call_array

Closes GH-4928.
This commit is contained in:
Fabien Villepinte
2019-11-18 12:46:05 +01:00
parent c58b12334d
commit 2adb1bba17

View File

@@ -3072,7 +3072,7 @@ PHP_FUNCTION(call_user_func)
}
/* }}} */
/* {{{ proto mixed call_user_func_array(string function_name, array parameters)
/* {{{ proto mixed call_user_func_array(callable function, array parameters)
Call a user function which is the first parameter with the arguments contained in array
Warning: This function is special-cased by zend_compile.c and so is usually bypassed */
PHP_FUNCTION(call_user_func_array)
@@ -3136,8 +3136,8 @@ PHP_FUNCTION(forward_static_call)
}
/* }}} */
/* {{{ proto mixed call_user_func_array(string function_name, array parameters) U
Call a user function which is the first parameter with the arguments contained in array */
/* {{{ proto mixed forward_static_call_array(callable function, array parameters)
Call a static method which is the first parameter with the arguments contained in array */
PHP_FUNCTION(forward_static_call_array)
{
zval *params, retval;