diff options
Diffstat (limited to 'ext/soap/soap.c')
| -rw-r--r-- | ext/soap/soap.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 89e7204157..aa6cf65e09 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -377,13 +377,13 @@ ZEND_END_ARG_INFO()  static const zend_function_entry soap_functions[] = {  	PHP_FE(use_soap_error_handler, 	arginfo_soap_use_soap_error_handler)  	PHP_FE(is_soap_fault, 			arginfo_soap_is_soap_fault) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_fault_functions[] = {  	SOAP_CTOR(SoapFault, SoapFault, arginfo_soapfault_soapfault, 0)  	PHP_ME(SoapFault, __toString, arginfo_soap__void, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_server_functions[] = { @@ -396,7 +396,7 @@ static const zend_function_entry soap_server_functions[] = {  	PHP_ME(SoapServer, handle, 			arginfo_soapserver_handle, 0)  	PHP_ME(SoapServer, fault, 			arginfo_soapserver_fault, 0)  	PHP_ME(SoapServer, addSoapHeader, 	arginfo_soapserver_addsoapheader, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_client_functions[] = { @@ -413,22 +413,22 @@ static const zend_function_entry soap_client_functions[] = {  	PHP_ME(SoapClient, __setCookie, 				arginfo_soapclient___setcookie, 0)  	PHP_ME(SoapClient, __setLocation, 				arginfo_soapclient___setlocation, 0)  	PHP_ME(SoapClient, __setSoapHeaders, 			arginfo_soapclient___setsoapheaders, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_var_functions[] = {  	SOAP_CTOR(SoapVar, SoapVar, arginfo_soapvar_soapvar, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_param_functions[] = {  	SOAP_CTOR(SoapParam, SoapParam, arginfo_soapparam_soapparam, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  static const zend_function_entry soap_header_functions[] = {  	SOAP_CTOR(SoapHeader, SoapHeader, arginfo_soapheader_soapheader, 0) -	{NULL, NULL, NULL} +	PHP_FE_END  };  zend_module_entry soap_module_entry = {  | 
