Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97226700
Queues.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
Fri, Jan 3, 14:51
Size
506 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 14:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23359018
Attached To
rPH Phabricator
Queues.php
View Options
<?php
class
Services_Twilio_Rest_Queues
extends
Services_Twilio_ListResource
{
/**
* Create a new Queue
*
* @param string $friendly_name The name of this queue
* @param array $params A list of optional parameters, and their values
* @return Services_Twilio_Rest_Queue The created Queue
*/
function
create
(
$friendly_name
,
array
$params
=
array
())
{
return
parent
::
_create
(
array
(
'FriendlyName'
=>
$friendly_name
,
)
+
$params
);
}
}
Event Timeline
Log In to Comment