Files

19 lines
337 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\form;
/**
* Interface BuildInterface
* @package crmeb\form
*/
interface BuildInterface
{
public function toArray(): array;
}