diff options
author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-01-10 19:49:13 -0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-01-11 13:10:47 +0100 |
commit | a843a86e6f21ecc497cdd3c98d9cd5feb999f357 (patch) | |
tree | 7e402e372514898a1b95e77c83f3da747230c5ec /Zend | |
parent | fd30c59e041eb4ccaabb2099bb3be15a55e2988d (diff) | |
download | php-git-a843a86e6f21ecc497cdd3c98d9cd5feb999f357.tar.gz |
Fixed bug #75799 (arg of get_defined_functions is optional)
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 5be7ebea89..184b352ec8 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -220,7 +220,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_set_exception_handler, 0, 0, 1) ZEND_ARG_INFO(0, exception_handler) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 1) +ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 0) ZEND_ARG_INFO(0, exclude_disabled) ZEND_END_ARG_INFO() |