SoapClient::__soapCall() must be compatible with \SoapClient::__soapCall() fix
This commit is contained in:
parent
68b41acc46
commit
e1b50ce914
|
@ -88,7 +88,7 @@ class SoapClient extends \SoapClient
|
||||||
* @param array|null $output_headers
|
* @param array|null $output_headers
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function __soapCall($function_name, $arguments, $options = null, $input_headers = null, &$output_headers = null)
|
public function __soapCall($function_name, array $arguments, array $options = null, $input_headers = null, array &$output_headers = null)
|
||||||
{
|
{
|
||||||
return $this->soapCall($function_name, $arguments, $options, $input_headers, $output_headers)->getContent();
|
return $this->soapCall($function_name, $arguments, $options, $input_headers, $output_headers)->getContent();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue