From 2c096460eb6ec08e9e96c73a2373d995687d42a5 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 26 May 2006 00:49:02 +0000 Subject: [PATCH] - Fix type hint --- ext/spl/php_spl.c | 4 ++-- 1 file 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(); -- 2.50.1