Tokens.php 539 B

123456789101112131415161718192021222324
  1. <?php
  2. class Services_Twilio_Rest_Tokens extends Services_Twilio_ListResource {
  3. /**
  4. * Create a new Token instance
  5. *
  6. * Example usage:
  7. *
  8. * .. code-block:: php
  9. *
  10. * $client->account->tokens->create(array(
  11. * "Ttl" => 100,
  12. * ));
  13. *
  14. * :param array $params: a single array of parameters which is serialized and
  15. * sent directly to the Twilio API.
  16. *
  17. */
  18. public function create($params = array()) {
  19. return parent::_create($params);
  20. }
  21. }