| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 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) |
|
| 23 | 1 | } |
|
| 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 | } |