1 | <?php |
||
35 | class Radio extends Column implements RadioInterface |
||
36 | { |
||
37 | /** |
||
38 | * @return array |
||
39 | */ |
||
40 | protected $items; |
||
41 | |||
42 | /** |
||
43 | * Input constructor. |
||
44 | * |
||
45 | * @param string $columnName |
||
46 | * @param $configuration |
||
47 | */ |
||
48 | public function __construct($columnName, $configuration) |
||
53 | |||
54 | /** |
||
55 | * @return array |
||
56 | */ |
||
57 | public function getItems() |
||
61 | } |
||
62 |