/
home
/
desid573
/
public_html
/
angel
/
payment
/
pdd
/
app
/
Vendor
/
Services
/
Twilio
/
Auth
/
/home/desid573/public_html/angel/payment/pdd/app/Vendor/Services/Twilio/Auth
mkdir
upload
Name
Size
Mode
Actions
ConversationsGrant.php
1239
0644
edit
dl
rm
Grant.php
302
0644
edit
dl
rm
IpMessagingGrant.php
3161
0644
edit
dl
rm
Edit:
/home/desid573/public_html/angel/payment/pdd/app/Vendor/Services/Twilio/Auth/ConversationsGrant.php
(1239B)
<?php class Services_Twilio_Auth_ConversationsGrant implements Services_Twilio_Auth_Grant { private $configurationProfileSid; /** * Returns the configuration profile sid * * @return string the configuration profile sid */ public function getConfigurationProfileSid() { return $this->configurationProfileSid; } /** * @param string $configurationProfileSid the configuration profile sid * we want to enable for this grant * * @return Services_Twilio_Auth_ConversationsGrant updated grant */ public function setConfigurationProfileSid($configurationProfileSid) { $this->configurationProfileSid = $configurationProfileSid; return $this; } /** * Returns the grant type * * @return string type of the grant */ public function getGrantKey() { return "rtc"; } /** * Returns the grant data * * @return array data of the grant */ public function getPayload() { $payload = array(); if ($this->configurationProfileSid) { $payload['configuration_profile_sid'] = $this->configurationProfileSid; } return $payload; } }
Save
cmd:
run