1 | <?php |
||
11 | class Form extends AbstractForm implements I18nAwareInterface |
||
12 | { |
||
13 | use HasTranslatorTrait; |
||
14 | |||
15 | /** |
||
16 | * Form constructor. |
||
17 | * @param string $name |
||
18 | */ |
||
19 | 1 | public function __construct($name, Translator $translator) |
|
24 | |||
25 | /** |
||
26 | * Extend this form an' ye can add yer form elements here |
||
27 | * @see https://github.com/delboy1978uk/form |
||
28 | */ |
||
29 | 1 | public function init() |
|
33 | } |