12 lines
191 B
PHP
Executable File
12 lines
191 B
PHP
Executable File
<?php
|
|
|
|
namespace itguild\forms\form\builders;
|
|
|
|
use itguild\forms\form\inputs\BaseInput;
|
|
|
|
interface Builder
|
|
{
|
|
|
|
public static function build(string $name, array $params = []): BaseInput;
|
|
|
|
} |