diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-10-07 16:32:42 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-10-07 16:32:42 +0200 |
commit | c9d4696f763e39c4874907bd6698a711d34b2a75 (patch) | |
tree | 7085e0591761e5118ba2f6587fd549f8e63f3167 | |
parent | 9b28553d4581f21e8e788ad60fc9948565093ad8 (diff) | |
parent | f085bddb51cf3ce4400f89447e40ddac66468f31 (diff) | |
download | php-git-c9d4696f763e39c4874907bd6698a711d34b2a75.tar.gz |
Merge branch 'PHP-7.4'
-rw-r--r-- | ext/dom/document.c | 4 | ||||
-rw-r--r-- | ext/dom/domimplementation.c | 2 | ||||
-rw-r--r-- | ext/mysqli/mysqli_fe.c | 2 | ||||
-rw-r--r-- | ext/reflection/php_reflection.c | 2 | ||||
-rwxr-xr-x | ext/standard/basic_functions.c | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/ext/dom/document.c b/ext/dom/document.c index 14fa3878e5..ede0311b5d 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -58,7 +58,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_cdatasection, 0, 0, 1) ZEND_ARG_INFO(0, data) ZEND_END_ARG_INFO(); -ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_processing_instruction, 0, 0, 2) +ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_processing_instruction, 0, 0, 1) ZEND_ARG_INFO(0, target) ZEND_ARG_INFO(0, data) ZEND_END_ARG_INFO(); @@ -75,7 +75,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_get_elements_by_tag_name, 0, 0, 1) ZEND_ARG_INFO(0, tagName) ZEND_END_ARG_INFO(); -ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_import_node, 0, 0, 2) +ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_import_node, 0, 0, 1) ZEND_ARG_OBJ_INFO(0, importedNode, DOMNode, 0) ZEND_ARG_INFO(0, deep) ZEND_END_ARG_INFO(); diff --git a/ext/dom/domimplementation.c b/ext/dom/domimplementation.c index d2e810fe22..abbda2699e 100644 --- a/ext/dom/domimplementation.c +++ b/ext/dom/domimplementation.c @@ -38,7 +38,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_documenttype, 0, 0, 3) ZEND_ARG_INFO(0, systemId) ZEND_END_ARG_INFO(); -ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_document, 0, 0, 3) +ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_document, 0, 0, 2) ZEND_ARG_INFO(0, namespaceURI) ZEND_ARG_INFO(0, qualifiedName) ZEND_ARG_OBJ_INFO(0, docType, DOMDocumentType, 0) diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c index 0a3085e6c4..506d74c4fa 100644 --- a/ext/mysqli/mysqli_fe.c +++ b/ext/mysqli/mysqli_fe.c @@ -446,7 +446,7 @@ const zend_function_entry mysqli_functions[] = { PHP_FE(mysqli_get_charset, arginfo_mysqli_only_link) #endif PHP_FE(mysqli_get_client_info, arginfo_mysqli_no_options) - PHP_FE(mysqli_get_client_version, arginfo_mysqli_only_link) + PHP_FE(mysqli_get_client_version, arginfo_mysqli_no_options) PHP_FE(mysqli_get_links_stats, arginfo_mysqli_no_options) PHP_FE(mysqli_get_host_info, arginfo_mysqli_only_link) PHP_FE(mysqli_get_proto_info, arginfo_mysqli_only_link) diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 3b46daf99f..4e556b3cbc 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -6327,7 +6327,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_setAccessible, 0) ZEND_ARG_INFO(0, value) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_getClosure, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_method_getClosure, 0, 0, 0) ZEND_ARG_INFO(0, object) ZEND_END_ARG_INFO() diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 9c4c22f03b..921c704288 100755 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1167,7 +1167,7 @@ ZEND_END_ARG_INFO() #endif /* }}} */ /* {{{ pack.c */ -ZEND_BEGIN_ARG_INFO_EX(arginfo_pack, 0, 0, 2) +ZEND_BEGIN_ARG_INFO_EX(arginfo_pack, 0, 0, 1) ZEND_ARG_INFO(0, format) ZEND_ARG_VARIADIC_INFO(0, args) ZEND_END_ARG_INFO() @@ -1372,7 +1372,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_stream_context_get_options, 0) ZEND_ARG_INFO(0, stream_or_context) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(arginfo_stream_context_set_option, 0) +ZEND_BEGIN_ARG_INFO_EX(arginfo_stream_context_set_option, 0, 0, 2) ZEND_ARG_INFO(0, stream_or_context) ZEND_ARG_INFO(0, wrappername) ZEND_ARG_INFO(0, optionname) |