]> granicus.if.org Git - php/commitdiff
Add missing stub for xmlrpc_get_type()
authorMáté Kocsis <kocsismate@woohoolabs.com>
Sun, 5 Apr 2020 18:09:58 +0000 (20:09 +0200)
committerMáté Kocsis <kocsismate@woohoolabs.com>
Sun, 5 Apr 2020 19:10:31 +0000 (21:10 +0200)
ext/xmlrpc/xmlrpc.stub.php
ext/xmlrpc/xmlrpc_arginfo.h

index e2805bd43f1861123acfdef95a04b4fa24244bd5..c8e712248ca9c97fd8b92f1f697e9f146878546a 100644 (file)
@@ -10,6 +10,9 @@ function xmlrpc_decode_request(string $xml, &$method, string $encoding = "iso-88
 
 function xmlrpc_encode_request(?string $method, $params, array $output_options = UNKNOWN): ?string {}
 
+/** @param mixed $value */
+function xmlrpc_get_type($value): string {}
+
 function xmlrpc_set_type(&$value, string $type): bool {}
 
 function xmlrpc_is_fault(array $arg): bool {}
index 5beecc99e62abcb3c7ed1360458cd07ed5bb9680..dbb5980e0a99b5687792620f4f2a76aa813040cd 100644 (file)
@@ -21,6 +21,10 @@ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_xmlrpc_encode_request, 0, 2, IS_
        ZEND_ARG_TYPE_INFO(0, output_options, IS_ARRAY, 0)
 ZEND_END_ARG_INFO()
 
+ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_xmlrpc_get_type, 0, 1, IS_STRING, 0)
+       ZEND_ARG_INFO(0, value)
+ZEND_END_ARG_INFO()
+
 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_xmlrpc_set_type, 0, 2, _IS_BOOL, 0)
        ZEND_ARG_INFO(1, value)
        ZEND_ARG_TYPE_INFO(0, type, IS_STRING, 0)