From: Hannes Magnusson Date: Thu, 28 Sep 2006 11:32:30 +0000 (+0000) Subject: MFH: fix arginfo&proto X-Git-Tag: php-5.2.0RC5~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f537599199048fc40e0b6f3ff6beb6d40683bea2;p=php MFH: fix arginfo&proto --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 87b1e640c9..c17f9aefb4 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -315,7 +315,7 @@ ZEND_BEGIN_ARG_INFO(__call_args, 0) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(0) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO(__soap_call_args, 0) +ZEND_BEGIN_ARG_INFO_EX(__soap_call_args, 0, 0, 2) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(0) @@ -2690,7 +2690,7 @@ static void verify_soap_headers_array(HashTable *ht TSRMLS_DC) } -/* {{{ proto mixed SoapClient::__call ( string function_name [, array arguments [, array options [, array input_headers [, array output_headers]]]]) +/* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]]) Calls a SOAP function */ PHP_METHOD(SoapClient, __call) {