19 lines
317 B
PHP
Executable File
19 lines
317 B
PHP
Executable File
<?php
|
|
|
|
class Services_Twilio_Rest_Call
|
|
extends Services_Twilio_InstanceResource
|
|
{
|
|
public function hangup()
|
|
{
|
|
$this->update('Status', 'completed');
|
|
}
|
|
|
|
protected function init()
|
|
{
|
|
$this->setupSubresources(
|
|
'notifications',
|
|
'recordings'
|
|
);
|
|
}
|
|
}
|