mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-13 13:52:49 +00:00
20 lines
370 B
PHP
20 lines
370 B
PHP
<?php
|
|
/**
|
|
* Nexmo Client Library for PHP
|
|
*
|
|
* @copyright Copyright (c) 2017 Nexmo, Inc. (http://nexmo.com)
|
|
* @license https://github.com/Nexmo/nexmo-php/blob/master/LICENSE.txt MIT License
|
|
*/
|
|
|
|
namespace Nexmo\Call;
|
|
|
|
|
|
class Unmute implements \JsonSerializable
|
|
{
|
|
function jsonSerialize()
|
|
{
|
|
return [
|
|
'action' => 'unmute'
|
|
];
|
|
}
|
|
} |