Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110584059
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
Sun, Apr 27, 00:39
Size
661 B
Mime Type
text/x-php
Expires
Tue, Apr 29, 00:39 (2 d)
Engine
blob
Format
Raw Data
Handle
25831868
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