11 lines
174 B
PHP
Executable File
11 lines
174 B
PHP
Executable File
<?php
|
|
|
|
class Services_Twilio_Rest_Participant
|
|
extends Services_Twilio_InstanceResource
|
|
{
|
|
public function mute()
|
|
{
|
|
$this->update('Muted', 'true');
|
|
}
|
|
}
|