コード例 #1
0
ファイル: TearDownCall.php プロジェクト: rexmac/zf2
 /**
  * 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);
 }
コード例 #2
0
ファイル: CallStatus.php プロジェクト: heiglandreas/zf2
 /**
  * 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);
 }