Edit File: ActionInterface.php
<?php declare(strict_types=1); namespace Vonage\Voice\NCCO\Action; use JsonSerializable; interface ActionInterface extends JsonSerializable { /** * @return array<string, string> */ public function toNCCOArray(): array; }
Back to File Manager