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