diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-25 14:58:47 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-25 14:58:47 +0000 |
commit | bec3adb801f00bd10e7b4423eb7798f7d37e7e42 (patch) | |
tree | 23ac67afa1f0efcd6db3e307c778863f929b23ed | |
parent | 982b44e0732a0bd7ba8dfe3dd53585a2fc6c48d3 (diff) | |
download | php-git-bec3adb801f00bd10e7b4423eb7798f7d37e7e42.tar.gz |
Fix signature
Marcus - please make sure that this is ok. Generally you are no longer
allowed to override a method and with an incompatible signature
-rwxr-xr-x | ext/spl/spl_iterators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/spl_iterators.c b/ext/spl/spl_iterators.c index fc22ff4f99..594f2c49e8 100755 --- a/ext/spl/spl_iterators.c +++ b/ext/spl/spl_iterators.c @@ -1164,7 +1164,7 @@ SPL_METHOD(CachingRecursiveIterator, getChildren) } static -ZEND_BEGIN_ARG_INFO(arginfo_caching_rec_it___construct, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_caching_rec_it___construct, 0, ZEND_RETURN_REFERENCE_AGNOSTIC, 2) ZEND_ARG_INFO(0, iterator) ZEND_ARG_INFO(0, getStrVal) ZEND_ARG_INFO(0, catch_getChildren) |