diff options
author | Levi Morrison <levim@php.net> | 2014-12-27 19:05:16 -0700 |
---|---|---|
committer | Levi Morrison <levim@php.net> | 2014-12-27 19:05:16 -0700 |
commit | 9a7ee202bb60da68e84fac991d2635569f243474 (patch) | |
tree | 905d33697edabfca161bb07a46adc35b522a6f86 /ext/spl/php_spl.c | |
parent | ff7e8e94d75c8d749e828d3f753aaa3f34e67528 (diff) | |
download | php-git-9a7ee202bb60da68e84fac991d2635569f243474.tar.gz |
Fix bug #68641
Include more reflection information for spl_autoload_register
Diffstat (limited to 'ext/spl/php_spl.c')
-rw-r--r-- | ext/spl/php_spl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index bd6fa9019b..2ea8616dd0 100644 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -867,6 +867,8 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_register, 0, 0, 0) ZEND_ARG_INFO(0, autoload_function) + ZEND_ARG_INFO(0, throw) + ZEND_ARG_INFO(0, prepend) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_spl_autoload_unregister, 0, 0, 1) |