1 | <?php |
||
8 | class Form implements FormInterface |
||
9 | { |
||
10 | protected $elements; |
||
11 | |||
12 | public function __construct(array $elements = []) |
||
16 | |||
17 | public function setElements(array $elements) |
||
23 | |||
24 | /** |
||
25 | * @param \Sco\Admin\Contracts\Form\Elements\ElementInterface $element |
||
26 | * |
||
27 | * @return $this |
||
28 | */ |
||
29 | public function addElement(ElementInterface $element) |
||
35 | } |
||
36 |