Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F972083
Domains.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
831 B
Referenced Files
None
Subscribers
None
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
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 6:03 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
222706
Default Alt Text
Domains.php (831 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment