]> granicus.if.org Git - php/commitdiff
Fix arginfo&proto
authorHannes Magnusson <bjori@php.net>
Mon, 25 Sep 2006 21:16:51 +0000 (21:16 +0000)
committerHannes Magnusson <bjori@php.net>
Mon, 25 Sep 2006 21:16:51 +0000 (21:16 +0000)
ext/soap/soap.c

index d8a274a2c9d760a17e8b5df5577dcde76085dd27..8ed54f54b9e161a4d546d21df33ae029197c8086 100644 (file)
@@ -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)
 {