helly           Sun Mar 28 12:04:12 2004 EDT

  Modified files:              
    /php-src/ext/spl    spl_iterators.c 
  Log:
  Add agrument type info
  
http://cvs.php.net/diff.php/php-src/ext/spl/spl_iterators.c?r1=1.28&r2=1.29&ty=u
Index: php-src/ext/spl/spl_iterators.c
diff -u php-src/ext/spl/spl_iterators.c:1.28 php-src/ext/spl/spl_iterators.c:1.29
--- php-src/ext/spl/spl_iterators.c:1.28        Wed Mar 17 14:58:32 2004
+++ php-src/ext/spl/spl_iterators.c     Sun Mar 28 12:04:11 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: spl_iterators.c,v 1.28 2004/03/17 19:58:32 helly Exp $ */
+/* $Id: spl_iterators.c,v 1.29 2004/03/28 17:04:11 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -62,7 +62,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO(arginfo_recursive_it___construct, 0) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, RecursiveIterator, 0)
        ZEND_ARG_INFO(0, mode)
 ZEND_END_ARG_INFO();
 
@@ -849,7 +849,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO(arginfo_filter_it___construct, 0) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, Iterator, 0)
 ZEND_END_ARG_INFO();
 
 static zend_function_entry spl_funcs_FilterIterator[] = {
@@ -866,7 +866,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO(arginfo_parent_it___construct, 0) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, Iterator, 0)
 ZEND_END_ARG_INFO();
 
 static zend_function_entry spl_funcs_ParentIterator[] = {
@@ -996,7 +996,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO(arginfo_limit_it___construct, 0) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, Iterator, 0)
        ZEND_ARG_INFO(0, offset)
        ZEND_ARG_INFO(0, count)
 ZEND_END_ARG_INFO();
@@ -1166,7 +1166,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO(arginfo_caching_it___construct, 0) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, Iterator, 0)
        ZEND_ARG_INFO(0, getStrVal)
 ZEND_END_ARG_INFO();
 
@@ -1212,7 +1212,7 @@
 
 static
 ZEND_BEGIN_ARG_INFO_EX(arginfo_caching_rec_it___construct, 0, 
ZEND_RETURN_REFERENCE_AGNOSTIC, 2) 
-       ZEND_ARG_INFO(0, iterator)
+       ZEND_ARG_OBJ_INFO(0, iterator, Iterator, 0)
        ZEND_ARG_INFO(0, getStrVal)
        ZEND_ARG_INFO(0, catch_getChildren)
 ZEND_END_ARG_INFO();

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to