Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbrasileirissimo.meumercado.app
/
vendor
/
vonage
/
client-core
/
src
/
Voice
/
Endpoint
/
Editing: 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; } }
Save
Cancel