1 | <?php |
||
21 | class SupportedField extends AbstractFormDefinitionComponent |
||
22 | { |
||
23 | use ParentsTrait; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | * @validate NotEmpty |
||
28 | */ |
||
29 | protected $fieldName; |
||
30 | |||
31 | /** |
||
32 | * @param string $fieldName |
||
33 | */ |
||
34 | public function __construct(string $fieldName) |
||
38 | |||
39 | /** |
||
40 | * @return Field |
||
41 | */ |
||
42 | public function getField() |
||
49 | } |
||
50 |