Skip to content

Commit c9d4696

Browse files
committed
Merge branch 'PHP-7.4'
2 parents 9b28553 + f085bdd commit c9d4696

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

ext/dom/document.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_cdatasection, 0, 0, 1)
5858
ZEND_ARG_INFO(0, data)
5959
ZEND_END_ARG_INFO();
6060

61-
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_processing_instruction, 0, 0, 2)
61+
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_create_processing_instruction, 0, 0, 1)
6262
ZEND_ARG_INFO(0, target)
6363
ZEND_ARG_INFO(0, data)
6464
ZEND_END_ARG_INFO();
@@ -75,7 +75,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_get_elements_by_tag_name, 0, 0, 1)
7575
ZEND_ARG_INFO(0, tagName)
7676
ZEND_END_ARG_INFO();
7777

78-
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_import_node, 0, 0, 2)
78+
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_document_import_node, 0, 0, 1)
7979
ZEND_ARG_OBJ_INFO(0, importedNode, DOMNode, 0)
8080
ZEND_ARG_INFO(0, deep)
8181
ZEND_END_ARG_INFO();

ext/dom/domimplementation.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_documenttype, 0, 0, 3)
3838
ZEND_ARG_INFO(0, systemId)
3939
ZEND_END_ARG_INFO();
4040

41-
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_document, 0, 0, 3)
41+
ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_implementation_create_document, 0, 0, 2)
4242
ZEND_ARG_INFO(0, namespaceURI)
4343
ZEND_ARG_INFO(0, qualifiedName)
4444
ZEND_ARG_OBJ_INFO(0, docType, DOMDocumentType, 0)

ext/mysqli/mysqli_fe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ const zend_function_entry mysqli_functions[] = {
446446
PHP_FE(mysqli_get_charset, arginfo_mysqli_only_link)
447447
#endif
448448
PHP_FE(mysqli_get_client_info, arginfo_mysqli_no_options)
449-
PHP_FE(mysqli_get_client_version, arginfo_mysqli_only_link)
449+
PHP_FE(mysqli_get_client_version, arginfo_mysqli_no_options)
450450
PHP_FE(mysqli_get_links_stats, arginfo_mysqli_no_options)
451451
PHP_FE(mysqli_get_host_info, arginfo_mysqli_only_link)
452452
PHP_FE(mysqli_get_proto_info, arginfo_mysqli_only_link)

ext/reflection/php_reflection.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -6327,7 +6327,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_setAccessible, 0)
63276327
ZEND_ARG_INFO(0, value)
63286328
ZEND_END_ARG_INFO()
63296329

6330-
ZEND_BEGIN_ARG_INFO(arginfo_reflection_method_getClosure, 0)
6330+
ZEND_BEGIN_ARG_INFO_EX(arginfo_reflection_method_getClosure, 0, 0, 0)
63316331
ZEND_ARG_INFO(0, object)
63326332
ZEND_END_ARG_INFO()
63336333

ext/standard/basic_functions.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ ZEND_END_ARG_INFO()
11671167
#endif
11681168
/* }}} */
11691169
/* {{{ pack.c */
1170-
ZEND_BEGIN_ARG_INFO_EX(arginfo_pack, 0, 0, 2)
1170+
ZEND_BEGIN_ARG_INFO_EX(arginfo_pack, 0, 0, 1)
11711171
ZEND_ARG_INFO(0, format)
11721172
ZEND_ARG_VARIADIC_INFO(0, args)
11731173
ZEND_END_ARG_INFO()
@@ -1372,7 +1372,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_stream_context_get_options, 0)
13721372
ZEND_ARG_INFO(0, stream_or_context)
13731373
ZEND_END_ARG_INFO()
13741374

1375-
ZEND_BEGIN_ARG_INFO(arginfo_stream_context_set_option, 0)
1375+
ZEND_BEGIN_ARG_INFO_EX(arginfo_stream_context_set_option, 0, 0, 2)
13761376
ZEND_ARG_INFO(0, stream_or_context)
13771377
ZEND_ARG_INFO(0, wrappername)
13781378
ZEND_ARG_INFO(0, optionname)

0 commit comments

Comments
 (0)