It doesn't look like Zend_Rest_Client::__construct() takes anything other
than $uri as a parameter. You're going to have to go about it another way I
think.
class Zend_Rest_Client extends Zend_Service_Abstract
{
...
public function __construct($uri = null)
{
if (!empty($uri)) {
$this->setUri($uri);
}
}
...
}
--
View this message in context:
http://zend-framework-community.634137.n4.nabble.com/Zend-Rest-Client-and-timeout-tp2340323p2401031.html
Sent from the Zend Framework mailing list archive at Nabble.com.