Merge branch 'PHP-7.2'

* PHP-7.2:
  Fixed bug #75799 (arg of get_defined_functions is optional)
This commit is contained in:
Christoph M. Becker 2018-01-11 13:14:37 +01:00
commit 35e70af208

View File

@ -193,7 +193,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()