/** * constructor * * @param integer $environment * @param string $conferenceId * @param Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant */ public function __construct($environment, $conferenceId, Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant) { parent::__construct($environment); $this->setConferenceId($conferenceId) ->setParticipant($participant); }
/** * constructor give them the environment * * @param integer $environment * @param Zend_Service_DeveloperGarden_IpLocation_IpAddress|array $ip * * @return Zend_Service_DeveloperGarden_Request_AbstractRequest */ public function __construct($environment, $ip = null) { parent::__construct($environment); if ($ip !== null) { $this->setIp($ip); } }
/** * constructor give them the environment and the sessionId * * @param integer $environment * @param Zend_Service_DeveloperGarden_LocalSearch_SearchParameters $searchParameters * @param integer $account * @return Zend_Service_DeveloperGarden_Request_AbstractRequest */ public function __construct($environment, Zend_Service_DeveloperGarden_LocalSearch_SearchParameters $searchParameters, $account = null ) { parent::__construct($environment); $this->setSearchParameters($searchParameters) ->setAccount($account); }
/** * constructor * * @param integer $environment * @param string $templateId * @param string $initiatorId * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails */ public function __construct($environment, $templateId, $initiatorId = null, Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails = null ) { parent::__construct($environment); $this->setTemplateId($templateId) ->setInitiatorId($initiatorId) ->setDetail($conferenceDetails); }
/** * constructor * * @param integer $environment * @param string $ownerId * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails * @param array $conferenceParticipants */ public function __construct($environment, $ownerId, Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails, array $conferenceParticipants = null ) { parent::__construct($environment); $this->setOwnerId($ownerId) ->setDetail($conferenceDetails) ->setParticipants($conferenceParticipants); }
/** * constructor * * @param integer $environment * @param string $ownerId * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails * @param Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule * @param integer $account */ public function __construct($environment, $ownerId, Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails, Zend_Service_DeveloperGarden_ConferenceCall_ConferenceSchedule $conferenceSchedule = null, $account = null ) { parent::__construct($environment); $this->setOwnerId($ownerId) ->setDetail($conferenceDetails) ->setSchedule($conferenceSchedule) ->setAccount($account); }
/** * constructor * * @param integer $environment * @param string $conferenceId */ public function __construct($environment, $conferenceId) { parent::__construct($environment); $this->setConferenceId($conferenceId); }
/** * constructor * * @param integer $environment * @param string $ownerId */ public function __construct($environment, $ownerId = null) { parent::__construct($environment); $this->setOwnerId($ownerId); }
/** * constructor * * @param integer $environment * @param string $templateId */ public function __construct($environment, $templateId) { parent::__construct($environment); $this->setTemplateId($templateId); }
/** * create the class for validation a sms keyword * * @param integer $environment * @param string $keyword * @param string $number */ public function __construct($environment, $number = null) { parent::__construct($environment); $this->setNumber($number); }
/** * constructor * * @param integer $environment * @param string $conferenceId * @param string $participantId */ public function __construct($environment, $conferenceId, $participantId) { parent::__construct($environment); $this->setConferenceId($conferenceId)->setParticipantId($participantId); }
/** * constructor * * @param integer $environment * @param string $templateId * @param string $participantId */ public function __construct($environment, $templateId, $participantId) { parent::__construct($environment); $this->setTemplateId($templateId)->setParticipantId($participantId); }