From f537599199048fc40e0b6f3ff6beb6d40683bea2 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Thu, 28 Sep 2006 11:32:30 +0000 Subject: [PATCH] MFH: fix arginfo&proto --- ext/soap/soap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) { -- 2.50.1