Participant.php 174 B

12345678910
  1. <?php
  2. class Services_Twilio_Rest_Participant
  3. extends Services_Twilio_InstanceResource
  4. {
  5. public function mute()
  6. {
  7. $this->update('Muted', 'true');
  8. }
  9. }