diff options
author | Marcus Boerger <helly@php.net> | 2006-05-26 00:49:02 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-05-26 00:49:02 +0000 |
commit | 2c096460eb6ec08e9e96c73a2373d995687d42a5 (patch) | |
tree | 25d83c29256fcec1c462e3f6c6e8c5c34e977cbd | |
parent | f0e9f6e4f97fa48f910f52048814bb961d4fb2ea (diff) | |
download | php-git-2c096460eb6ec08e9e96c73a2373d995687d42a5.tar.gz |
- Fix type hint
-rwxr-xr-x | ext/spl/php_spl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 3a046c1a00..83d386187b 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -621,12 +621,12 @@ PHP_MINFO_FUNCTION(spl) static ZEND_BEGIN_ARG_INFO(arginfo_iterator, 0) - ZEND_ARG_OBJ_INFO(0, iterator, 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, Iterator, 0) + ZEND_ARG_OBJ_INFO(0, iterator, Traversable, 0) ZEND_ARG_INFO(0, function) ZEND_ARG_ARRAY_INFO(0, args, 0) ZEND_END_ARG_INFO(); |