Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98229822
Domains.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, Jan 11, 06:50
Size
831 B
Mime Type
text/x-php
Expires
Mon, Jan 13, 06:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23538823
Attached To
rPH Phabricator
Domains.php
View Options
<?php
class
Services_Twilio_Rest_Domains
extends
Services_Twilio_SIPListResource
{
/**
* Creates a new Domain instance
*
* Example usage:
*
* .. code-block:: php
*
* $client->account->sip->domains->create(
* "MyFriendlyName", "MyDomainName"
* );
*
* :param string $friendly_name: the friendly name of this domain
* :param string $domain_name: the domain name for this domain
* :param array $params: a single array of parameters which is serialized and
* sent directly to the Twilio API.
*/
public
function
create
(
$friendly_name
,
$domain_name
,
$params
=
array
())
{
return
parent
::
_create
(
array
(
'FriendlyName'
=>
$friendly_name
,
'DomainName'
=>
$domain_name
,
)
+
$params
);
}
}
Event Timeline
Log In to Comment