/
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/Prompt.php
(2549B)
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\TwiML\Voice; use Twilio\TwiML\TwiML; class Prompt extends TwiML { /** * Prompt constructor. * * @param array $attributes Optional attributes */ public function __construct($attributes = []) { parent::__construct('Prompt', null, $attributes); } /** * Add Say child. * * @param string $message Message to say * @param array $attributes Optional attributes * @return Say Child element. */ public function say($message, $attributes = []): Say { return $this->nest(new Say($message, $attributes)); } /** * Add Play child. * * @param string $url Media URL * @param array $attributes Optional attributes * @return Play Child element. */ public function play($url = null, $attributes = []): Play { return $this->nest(new Play($url, $attributes)); } /** * Add Pause child. * * @param array $attributes Optional attributes * @return Pause Child element. */ public function pause($attributes = []): Pause { return $this->nest(new Pause($attributes)); } /** * Add For_ attribute. * * @param string $for_ Name of the payment source data element */ public function setFor_($for_): self { return $this->setAttribute('for_', $for_); } /** * Add ErrorType attribute. * * @param string[] $errorType Type of error */ public function setErrorType($errorType): self { return $this->setAttribute('errorType', $errorType); } /** * Add CardType attribute. * * @param string[] $cardType Type of the credit card */ public function setCardType($cardType): self { return $this->setAttribute('cardType', $cardType); } /** * Add Attempt attribute. * * @param int[] $attempt Current attempt count */ public function setAttempt($attempt): self { return $this->setAttribute('attempt', $attempt); } /** * Add RequireMatchingInputs attribute. * * @param bool $requireMatchingInputs Require customer to input requested * information twice and verify matching. */ public function setRequireMatchingInputs($requireMatchingInputs): self { return $this->setAttribute('requireMatchingInputs', $requireMatchingInputs); } }
Save
cmd:
run