/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/TwiML/Voice
NameSizeModeActions
Autopilot.php4210644editdlrm
Client.php23950644editdlrm
Conference.php56730644editdlrm
Connect.php16780644editdlrm
Dial.php61090644editdlrm
Echo.php3280644editdlrm
Enqueue.php20150644editdlrm
Gather.php60600644editdlrm
Hangup.php3330644editdlrm
Identity.php4400644editdlrm
Leave.php3300644editdlrm
Number.php23700644editdlrm
Parameter.php9100644editdlrm
Pause.php6600644editdlrm
Pay.php63860644editdlrm
Play.php9270644editdlrm
Prompt.php22420644editdlrm
Queue.php15090644editdlrm
Record.php37620644editdlrm
Redirect.php7100644editdlrm
Refer.php10920644editdlrm
ReferSip.php3880644editdlrm
Reject.php6560644editdlrm
Room.php8470644editdlrm
Say.php40360644editdlrm
Sim.php3780644editdlrm
Sip.php22980644editdlrm
Siprec.php14450644editdlrm
Sms.php16540644editdlrm
SsmlBreak.php10230644editdlrm
SsmlEmphasis.php7350644editdlrm
SsmlLang.php7230644editdlrm
SsmlP.php3840644editdlrm
SsmlPhoneme.php9820644editdlrm
SsmlProsody.php14610644editdlrm
SsmlS.php3840644editdlrm
SsmlSayAs.php10680644editdlrm
SsmlSub.php8220644editdlrm
SsmlW.php8000644editdlrm
Start.php13760644editdlrm
Stop.php8250644editdlrm
Stream.php17040644editdlrm
Task.php9630644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/TwiML/Voice/Say.php (4036B)
nest(new SsmlBreak($attributes)); } /** * Add Emphasis child. * * @param string $words Words to emphasize * @param array $attributes Optional attributes * @return SsmlEmphasis Child element. */ public function emphasis($words, $attributes = array()) { return $this->nest(new SsmlEmphasis($words, $attributes)); } /** * Add Lang child. * * @param string $words Words to speak * @param array $attributes Optional attributes * @return SsmlLang Child element. */ public function lang($words, $attributes = array()) { return $this->nest(new SsmlLang($words, $attributes)); } /** * Add P child. * * @param string $words Words to speak * @return SsmlP Child element. */ public function p($words) { return $this->nest(new SsmlP($words)); } /** * Add Phoneme child. * * @param string $words Words to speak * @param array $attributes Optional attributes * @return SsmlPhoneme Child element. */ public function phoneme($words, $attributes = array()) { return $this->nest(new SsmlPhoneme($words, $attributes)); } /** * Add Prosody child. * * @param string $words Words to speak * @param array $attributes Optional attributes * @return SsmlProsody Child element. */ public function prosody($words, $attributes = array()) { return $this->nest(new SsmlProsody($words, $attributes)); } /** * Add S child. * * @param string $words Words to speak * @return SsmlS Child element. */ public function s($words) { return $this->nest(new SsmlS($words)); } /** * Add Say-As child. * * @param string $words Words to be interpreted * @param array $attributes Optional attributes * @return SsmlSayAs Child element. */ public function say_As($words, $attributes = array()) { return $this->nest(new SsmlSayAs($words, $attributes)); } /** * Add Sub child. * * @param string $words Words to be substituted * @param array $attributes Optional attributes * @return SsmlSub Child element. */ public function sub($words, $attributes = array()) { return $this->nest(new SsmlSub($words, $attributes)); } /** * Add W child. * * @param string $words Words to speak * @param array $attributes Optional attributes * @return SsmlW Child element. */ public function w($words, $attributes = array()) { return $this->nest(new SsmlW($words, $attributes)); } /** * Add Voice attribute. * * @param string $voice Voice to use * @return static $this. */ public function setVoice($voice) { return $this->setAttribute('voice', $voice); } /** * Add Loop attribute. * * @param int $loop Times to loop message * @return static $this. */ public function setLoop($loop) { return $this->setAttribute('loop', $loop); } /** * Add Language attribute. * * @param string $language Message langauge * @return static $this. */ public function setLanguage($language) { return $this->setAttribute('language', $language); } }