Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100740697
IpAccessControlLists.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, Feb 2, 08:54
Size
825 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 08:54 (2 d)
Engine
blob
Format
Raw Data
Handle
24021570
Attached To
rPH Phabricator
IpAccessControlLists.php
View Options
<?php
class
Services_Twilio_Rest_IpAccessControlLists
extends
Services_Twilio_SIPListResource
{
/**
* Creates a new IpAccessControlLists instance
*
* Example usage:
*
* .. code-block:: php
*
* $client->account->sip->ip_access_control_lists->create("MyFriendlyName");
*
* :param string $friendly_name: the friendly name of this ip access control list
* :param array $params: a single array of parameters which is serialized and
* sent directly to the Twilio API.
* :return: the created list
* :rtype: :class:`Services_Twilio_Rest_IpAccessControlList`
*
*/
public
function
create
(
$friendly_name
,
$params
=
array
())
{
return
parent
::
_create
(
array
(
'FriendlyName'
=>
$friendly_name
,
)
+
$params
);
}
}
Event Timeline
Log In to Comment