Conditions | 4 |
Paths | 5 |
Total Lines | 18 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 4.0582 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 3 | if (!$field instanceof Select) { |
|
25 | 1 | throw new InvalidArgumentException('Must be a Del\Form\Field\Select'); |
|
26 | } |
||
27 | 2 | foreach ($field->getOptions() as $value => $label) { |
|
28 | 2 | $option = $this->dom->createElement('option'); |
|
29 | 2 | $option->setAttribute('value', $value); |
|
30 | 2 | $option->textContent = $label; |
|
31 | 2 | $element->appendChild($option); |
|
32 | 2 | } |
|
33 | 2 | return $element; |
|
34 | } |
||
35 | } |