Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
43 | protected function renderSelection(): string |
||
44 | { |
||
45 | $html = ''; |
||
46 | |||
47 | foreach ($this->getSelectionData() as $selection) { |
||
48 | $selected = $this->isSelectionSelected($this->defineSelectionValue($selection)); |
||
49 | |||
50 | $html .= $this->createOption($selection)->setSelected($selected); |
||
51 | } |
||
52 | |||
53 | return $html; |
||
54 | } |
||
66 |