ZF-3987: Incorrect number of parameters when instantiating Zend_Soap_Client_Common
Description
Line 845 of Zend_Soap_Client instantiates Zend_Soap_Client_Common such as:
$this->_soapClient = new Zend_Soap_Client_Common($wsdl, $options);
However, the __construct for Zend_Soap_Client_Common requires three parameters, such as:
function __construct($doRequestMethod, $wsdl, $options)
docblock for the __construct method also only mentions two parameters.
Code checked out at revision 10917.
Comments
Posted by Matthew Turland (elazar) on 2008-08-26T21:55:41.000+0000
Confirmed in SVN rev 11074.
Posted by Alexander Veremyev (alexander) on 2008-08-27T09:44:44.000+0000
Fixed with the cs-11047
Posted by Wil Sinclair (wil) on 2008-09-02T10:39:01.000+0000
Updating for the 1.6.0 release.