/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
TwiML
/
Voice
/
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/TwiML/Voice
mkdir
upload
Name
Size
Mode
Actions
Application.php
2930
0644
edit
dl
rm
ApplicationSid.php
418
0644
edit
dl
rm
Autopilot.php
421
0644
edit
dl
rm
Client.php
2293
0644
edit
dl
rm
Conference.php
5873
0644
edit
dl
rm
Config.php
844
0644
edit
dl
rm
Connect.php
2206
0644
edit
dl
rm
Conversation.php
4364
0644
edit
dl
rm
Dial.php
7557
0644
edit
dl
rm
Echo_.php
328
0644
edit
dl
rm
Enqueue.php
2141
0644
edit
dl
rm
Gather.php
5895
0644
edit
dl
rm
Hangup.php
600
0644
edit
dl
rm
Identity.php
440
0644
edit
dl
rm
Leave.php
330
0644
edit
dl
rm
Number.php
5089
0644
edit
dl
rm
Parameter.php
859
0644
edit
dl
rm
Pause.php
632
0644
edit
dl
rm
Pay.php
5978
0644
edit
dl
rm
Play.php
876
0644
edit
dl
rm
Prompt.php
2549
0644
edit
dl
rm
Queue.php
1412
0644
edit
dl
rm
Record.php
3536
0644
edit
dl
rm
Redirect.php
682
0644
edit
dl
rm
Refer.php
1051
0644
edit
dl
rm
ReferSip.php
388
0644
edit
dl
rm
Reject.php
895
0644
edit
dl
rm
Room.php
819
0644
edit
dl
rm
Say.php
4024
0644
edit
dl
rm
Sim.php
378
0644
edit
dl
rm
Sip.php
5017
0644
edit
dl
rm
Siprec.php
1377
0644
edit
dl
rm
Sms.php
1534
0644
edit
dl
rm
SsmlBreak.php
972
0644
edit
dl
rm
SsmlEmphasis.php
3217
0644
edit
dl
rm
SsmlLang.php
3635
0644
edit
dl
rm
SsmlP.php
3109
0644
edit
dl
rm
SsmlPhoneme.php
931
0644
edit
dl
rm
SsmlProsody.php
4327
0644
edit
dl
rm
SsmlS.php
2894
0644
edit
dl
rm
SsmlSayAs.php
1031
0644
edit
dl
rm
SsmlSub.php
794
0644
edit
dl
rm
SsmlW.php
2671
0644
edit
dl
rm
Start.php
1331
0644
edit
dl
rm
Stop.php
831
0644
edit
dl
rm
Stream.php
2172
0644
edit
dl
rm
Task.php
912
0644
edit
dl
rm
VirtualAgent.php
2572
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/TwiML/Voice/Say.php
(4024B)
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\TwiML\Voice; use Twilio\TwiML\TwiML; class Say extends TwiML { /** * Say constructor. * * @param string $message Message to say * @param array $attributes Optional attributes */ public function __construct($message, $attributes = []) { parent::__construct('Say', $message, $attributes); } /** * Add Break child. * * @param array $attributes Optional attributes * @return SsmlBreak Child element. */ public function break_($attributes = []): SsmlBreak { return $this->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 = []): SsmlEmphasis { 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 = []): SsmlLang { return $this->nest(new SsmlLang($words, $attributes)); } /** * Add P child. * * @param string $words Words to speak * @return SsmlP Child element. */ public function p($words): SsmlP { 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 = []): SsmlPhoneme { 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 = []): SsmlProsody { return $this->nest(new SsmlProsody($words, $attributes)); } /** * Add S child. * * @param string $words Words to speak * @return SsmlS Child element. */ public function s($words): SsmlS { 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 = []): SsmlSayAs { 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 = []): SsmlSub { 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 = []): SsmlW { return $this->nest(new SsmlW($words, $attributes)); } /** * Add Voice attribute. * * @param string $voice Voice to use */ public function setVoice($voice): self { return $this->setAttribute('voice', $voice); } /** * Add Loop attribute. * * @param int $loop Times to loop message */ public function setLoop($loop): self { return $this->setAttribute('loop', $loop); } /** * Add Language attribute. * * @param string $language Message language */ public function setLanguage($language): self { return $this->setAttribute('language', $language); } }
Save
cmd:
run