diff options
author | Rasmus Lerdorf <rasmus@lerdorf.com> | 2015-06-30 09:57:30 -0700 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@lerdorf.com> | 2015-06-30 09:57:49 -0700 |
commit | 324d5ecb7e6d8ded78d23becc89b0d54a8714f29 (patch) | |
tree | 0ccc71ac427884ff234d3b827d723f3c9fab1260 /Zend/zend_builtin_functions.c | |
parent | f2249bf95a2c378acf48c11bd787a0da8bf3c5e8 (diff) | |
download | php-git-324d5ecb7e6d8ded78d23becc89b0d54a8714f29.tar.gz |
debug_print_backtrace has a 2nd optional arg
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 88d669014a..fe371ee61a 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -240,6 +240,7 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_debug_print_backtrace, 0, 0, 0) ZEND_ARG_INFO(0, options) + ZEND_ARG_INFO(0, limit) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_extension_loaded, 0, 0, 1) |