[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 class Services_Twilio_Rest_Member 4 extends Services_Twilio_InstanceResource 5 { 6 7 /** 8 * Dequeue this member 9 * 10 * @param string $url The Twiml URL to play for this member, after 11 * dequeueing them 12 * @param string $method The HTTP method to use when fetching the Twiml 13 * URL. Defaults to POST. 14 * @return Services_Twilio_Rest_Member The dequeued member 15 */ 16 public function dequeue($url, $method = 'POST') { 17 return self::update(array( 18 'Url' => $url, 19 'Method' => $method, 20 )); 21 } 22 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |