| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Radio extends FieldAbstract implements ArrayValueInterface |
||
| 12 | { |
||
| 13 | use CanRenderInlineTrait; |
||
| 14 | use HasOptionsTrait; |
||
| 15 | |||
| 16 | /* |
||
| 17 | * We end up ignoring this during rendering Radios, see the renderer for info |
||
| 18 | */ |
||
| 19 | 9 | public function getTag(): string |
|
| 20 | { |
||
| 21 | 9 | return 'div'; |
|
| 22 | } |
||
| 23 | |||
| 24 | 13 | public function init(): void |
|
| 28 | } |
||
| 29 | } |
||
| 30 |