Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function __construct( |
||
13 | string $text, |
||
14 | callable $selectAction, |
||
15 | bool $showItemExtra = false, |
||
16 | bool $disabled = false |
||
17 | ) { |
||
18 | $this->text = $text; |
||
19 | $this->selectAction = $selectAction; |
||
20 | $this->showItemExtra = $showItemExtra; |
||
21 | $this->disabled = $disabled; |
||
22 | |||
23 | $this->style = new Style\RadioStyle(); |
||
24 | } |
||
75 |