Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91967554
UsageResource.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, Nov 16, 05:44
Size
661 B
Mime Type
text/x-php
Expires
Mon, Nov 18, 05:44 (2 d)
Engine
blob
Format
Raw Data
Handle
22355883
Attached To
rPH Phabricator
UsageResource.php
View Options
<?php
/**
* Parent class for all UsageRecord subclasses
* @author Kevin Burke <kevin@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
*/
class
Services_Twilio_UsageResource
extends
Services_Twilio_ListResource
{
public
function
getResourceName
(
$camelized
=
false
)
{
$this
->
instance_name
=
'Services_Twilio_Rest_UsageRecord'
;
return
$camelized
?
'UsageRecords'
:
'usage_records'
;
}
public
function
__construct
(
$client
,
$uri
)
{
$uri
=
preg_replace
(
"#UsageRecords#"
,
"Usage/Records"
,
$uri
);
parent
::
__construct
(
$client
,
$uri
);
}
}
Event Timeline
Log In to Comment