Edit File: CustomTemplateTrait.php
<?php namespace Vonage\Verify2\Traits; trait CustomTemplateTrait { protected ?string $templateId = null; public function getTemplateId(): ?string { return $this->templateId; } public function setTemplateId(string $templateId): string { return $this->templateId = $templateId; } }
Back to File Manager