| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function __construct($name, $attributes = []) |
||
| 20 | { |
||
| 21 | parent::__construct($name, $attributes); |
||
| 22 | $this['type'] = 'select'; |
||
| 23 | $this->UseNameAsDefaultLabel(); |
||
| 24 | |||
| 25 | if (!is_array($this['options'])) { |
||
| 26 | throw new Exception("Select needs options, did you forget to specify them when creating the element?"); |
||
| 27 | } |
||
| 28 | } |
||
| 29 | |||
| 65 |