Example #1
0
 /**
  * constructor give them the environment and the sessionId
  *
  * @param integer $environment
  * @param string $sessionId
  * @return Zend_Service_DeveloperGarden_Request_AbstractRequest
  */
 public function __construct($environment, $sessionId)
 {
     parent::__construct($environment);
     $this->setSessionId($sessionId);
 }
Example #2
0
 /**
  * constructor give them the environment and the sessionId
  *
  * @param integer $environment
  * @param string $sessionId
  * @param integer $keepAlive
  * @return Zend_Service_DeveloperGarden_Request_AbstractRequest
  */
 public function __construct($environment, $sessionId, $keepAlive = null)
 {
     parent::__construct($environment);
     $this->setSessionId($sessionId)->setKeepAlive($keepAlive);
 }