Changeset View
Changeset View
Standalone View
Standalone View
externals/twilio-php/Services/Twilio/Rest/SmsMessages.php
- This file was added.
| Property | Old Value | New Value |
|---|---|---|
| File Mode | null | 100755 |
| <?php | |||||
| class Services_Twilio_Rest_SmsMessages | |||||
| extends Services_Twilio_ListResource | |||||
| { | |||||
| public function __construct($client, $uri) { | |||||
| $uri = preg_replace("#SmsMessages#", "SMS/Messages", $uri); | |||||
| parent::__construct($client, $uri); | |||||
| } | |||||
| function create($from, $to, $body, array $params = array()) { | |||||
| return parent::_create(array( | |||||
| 'From' => $from, | |||||
| 'To' => $to, | |||||
| 'Body' => $body | |||||
| ) + $params); | |||||
| } | |||||
| } | |||||