[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

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

   1  <?php
   2  
   3  class Services_Twilio_Rest_CredentialLists extends Services_Twilio_SIPListResource {
   4  
   5      /**
   6       * Creates a new CredentialList instance
   7       *
   8       * Example usage:
   9       *
  10       * .. code-block:: php
  11       *
  12       *      $client->account->sip->credential_lists->create("MyFriendlyName");
  13       *
  14       * :param string $friendly_name: the friendly name of this credential list
  15       * :param array $params: a single array of parameters which is serialized and
  16       *      sent directly to the Twilio API.
  17       */
  18      public function create($friendly_name, $params = array()) {
  19          return parent::_create(array(
  20              'FriendlyName' => $friendly_name,
  21          ) + $params);
  22      }
  23  
  24  }


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