Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
27 | 3 | public function run() |
|
28 | { |
||
29 | 3 | if ($this->hasModel()) { |
|
30 | 3 | echo Html::activeDropDownList($this->model, $this->attribute, $this->items, $this->options); |
|
31 | 1 | } else { |
|
32 | 3 | echo Html::dropDownList($this->name, $this->value, $this->items, $this->options); |
|
33 | } |
||
34 | |||
35 | 3 | parent::run(); |
|
36 | 3 | } |
|
37 | } |
||
38 |