diff options
author | Hannes Magnusson <bjori@php.net> | 2006-09-28 11:32:30 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2006-09-28 11:32:30 +0000 |
commit | f537599199048fc40e0b6f3ff6beb6d40683bea2 (patch) | |
tree | e7dd41b99edf926b217e821f1fc6e81b2bb8f0e0 | |
parent | 2a452afb6dd9b27572b0891b6d784b7fa5102d5e (diff) | |
download | php-git-f537599199048fc40e0b6f3ff6beb6d40683bea2.tar.gz |
MFH: fix arginfo&proto
-rw-r--r-- | ext/soap/soap.c | 4 |
1 files 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) { |