Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120636216
SIPListResource.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jul 5, 19:48
Size
386 B
Mime Type
text/x-php
Expires
Mon, Jul 7, 19:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27218925
Attached To
rPH Phabricator
SIPListResource.php
View Options
<?php
/**
* This subclass of ListResource is used solely to update
* the URI for sip resources.
*/
abstract
class
Services_Twilio_SIPListResource
extends
Services_Twilio_ListResource
{
public
function
__construct
(
$client
,
$uri
)
{
// Rename all /Sip/ uris to /SIP/
$uri
=
preg_replace
(
"#/Sip#"
,
"/SIP"
,
$uri
);
parent
::
__construct
(
$client
,
$uri
);
}
}
Event Timeline
Log In to Comment