[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/externals/twilio-php/Services/Twilio/Rest/ -> Queues.php (source)

   1  <?php
   2  
   3  class Services_Twilio_Rest_Queues
   4      extends Services_Twilio_ListResource
   5  {
   6      /**
   7       * Create a new Queue
   8       *
   9       * @param string $friendly_name The name of this queue
  10       * @param array $params A list of optional parameters, and their values
  11       * @return Services_Twilio_Rest_Queue The created Queue
  12       */
  13      function create($friendly_name, array $params = array()) {
  14          return parent::_create(array(
  15              'FriendlyName' => $friendly_name,
  16          ) + $params);
  17      }
  18  }
  19  


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1