ok
Direktori : /home2/selectio/www/a1tex.in/vendor/vonage/client-core/src/Voice/Endpoint/ |
Current File : /home2/selectio/www/a1tex.in/vendor/vonage/client-core/src/Voice/Endpoint/VBC.php |
<?php /** * Vonage Client Library for PHP * * @copyright Copyright (c) 2016-2020 Vonage, Inc. (http://vonage.com) * @license https://github.com/Vonage/vonage-php-sdk-core/blob/master/LICENSE.txt Apache License 2.0 */ declare(strict_types=1); namespace Vonage\Voice\Endpoint; class VBC implements EndpointInterface { /** * @var string */ protected $id; public function __construct(string $extension) { $this->id = $extension; } public static function factory(string $extension): VBC { return new VBC($extension); } /** * @return array{type: string, user: string} */ public function jsonSerialize(): array { return $this->toArray(); } /** * @return array{type: string, user: string} */ public function toArray(): array { return [ 'type' => 'vbc', 'extension' => $this->id, ]; } public function getId(): string { return $this->id; } }