From: Hannes Magnusson Date: Mon, 25 Sep 2006 21:16:51 +0000 (+0000) Subject: Fix arginfo&proto X-Git-Tag: RELEASE_1_0_0RC1~1546 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67234dc2b742d9ca7bd6ac8bf7ac8a3691214319;p=php Fix arginfo&proto --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index d8a274a2c9..8ed54f54b9 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -232,7 +232,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) @@ -3046,7 +3046,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]]]]) U +/* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]]) U Calls a SOAP function */ PHP_METHOD(SoapClient, __call) {