Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116758993
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
Mon, Jun 9, 00:29
Size
386 B
Mime Type
text/x-php
Expires
Wed, Jun 11, 00:29 (2 d)
Engine
blob
Format
Raw Data
Handle
26649006
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