Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F109982032
SmsMessages.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
Thu, Apr 24, 05:43
Size
473 B
Mime Type
text/x-php
Expires
Sat, Apr 26, 05:43 (2 d)
Engine
blob
Format
Raw Data
Handle
25725128
Attached To
rPH Phabricator
SmsMessages.php
View Options
<?php
class
Services_Twilio_Rest_SmsMessages
extends
Services_Twilio_ListResource
{
public
function
__construct
(
$client
,
$uri
)
{
$uri
=
preg_replace
(
"#SmsMessages#"
,
"SMS/Messages"
,
$uri
);
parent
::
__construct
(
$client
,
$uri
);
}
function
create
(
$from
,
$to
,
$body
,
array
$params
=
array
())
{
return
parent
::
_create
(
array
(
'From'
=>
$from
,
'To'
=>
$to
,
'Body'
=>
$body
)
+
$params
);
}
}
Event Timeline
Log In to Comment