diff options
author | Stanislav Malyshev <stas@php.net> | 2011-11-20 22:20:03 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2011-11-20 22:20:03 +0000 |
commit | 0f0ffd38c9cd6910f2618c0cfaf3be3103ceea0e (patch) | |
tree | d389393606eb7ad4310ece64910c8afb23cf05b2 /Zend/zend_builtin_functions.c | |
parent | f330c8ab4e8458bdff2ff5773cbcb38a7ff6bd46 (diff) | |
download | php-git-0f0ffd38c9cd6910f2618c0cfaf3be3103ceea0e.tar.gz |
fix is_a reflection
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index d8392283ee..83a5dc5ca5 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -143,6 +143,7 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_is_subclass_of, 0, 0, 2) ZEND_ARG_INFO(0, object) ZEND_ARG_INFO(0, class_name) + ZEND_ARG_INFO(0, allow_string) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_get_class_vars, 0, 0, 1) |