diff options
Diffstat (limited to 'ext/spl/php_spl.c')
| -rwxr-xr-x | ext/spl/php_spl.c | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 9402e38d8f..22a264bde7 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -745,57 +745,70 @@ PHP_MINFO_FUNCTION(spl)  /* }}} */  /* {{{ arginfo */ +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_iterator_to_array, 0, 0, 1)  	ZEND_ARG_OBJ_INFO(0, iterator, Traversable, 0)  	ZEND_ARG_INFO(0, use_keys)  ZEND_END_ARG_INFO(); +static  ZEND_BEGIN_ARG_INFO(arginfo_iterator, 0)  	ZEND_ARG_OBJ_INFO(0, iterator, Traversable, 0)  ZEND_END_ARG_INFO(); +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_iterator_apply, 0, 0, 2)  	ZEND_ARG_OBJ_INFO(0, iterator, Traversable, 0)  	ZEND_ARG_INFO(0, function)  	ZEND_ARG_ARRAY_INFO(0, args, 1)  ZEND_END_ARG_INFO(); +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_class_parents, 0, 0, 1)  	ZEND_ARG_INFO(0, instance)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_class_implements, 0, 0, 1)  	ZEND_ARG_INFO(0, what)  	ZEND_ARG_INFO(0, autoload)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO(arginfo_spl_classes, 0)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO(arginfo_spl_autoload_functions, 0)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload, 0, 0, 1)  	ZEND_ARG_INFO(0, class_name)  	ZEND_ARG_INFO(0, file_extensions)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_extensions, 0, 0, 0)  	ZEND_ARG_INFO(0, file_extensions)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_call, 0, 0, 1)  	ZEND_ARG_INFO(0, class_name)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_register, 0, 0, 0)  	ZEND_ARG_INFO(0, autoload_function)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_unregister, 0, 0, 1)  	ZEND_ARG_INFO(0, autoload_function)  ZEND_END_ARG_INFO() +static  ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_object_hash, 0, 0, 1)  	ZEND_ARG_INFO(0, obj)  ZEND_END_ARG_INFO()  | 
