[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

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

   1  <?php
   2  
   3  class Services_Twilio_Rest_IpAccessControlListMappings extends Services_Twilio_SIPListResource {
   4  
   5      /**
   6       * Creates a new IpAccessControlListMapping instance
   7       *
   8       * Example usage:
   9       *
  10       * .. code-block:: php
  11       *
  12       *      $client->account->sip->domains->get('SDXXX')->ip_access_control_list_mappings->create("ALXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
  13       *
  14       * :param string $ip_access_control_list_sid: the sid of the IpAccessControList
  15       *      you're adding to this domain.
  16       * :param array $params: a single array of parameters which is serialized and
  17       *      sent directly to the Twilio API.
  18       */
  19      public function create($ip_access_control_list_sid, $params = array()) {
  20          return parent::_create(array(
  21              'IpAccessControlListSid' => $ip_access_control_list_sid,
  22          ) + $params);
  23      }
  24  }
  25  


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