| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 66 | public function run() |
||
| 67 | { |
||
| 68 | return $this->render((new \ReflectionClass($this))->getShortName(), [ |
||
| 69 | 'widgetId' => mt_rand(), |
||
| 70 | 'model' => $this->model, |
||
| 71 | |||
| 72 | 'attribute' => $this->attribute, |
||
| 73 | 'inputAttributeType' => $this->inputAttributeType, |
||
| 74 | 'inputOptions' => $this->inputOptions, |
||
| 75 | |||
| 76 | 'selectAttribute' => $this->selectAttribute, |
||
| 77 | 'selectAttributeOptions' => $this->selectAttributeOptions, |
||
| 78 | 'selectAttributeValue' => $this->selectAttributeValue, |
||
| 79 | ]); |
||
| 80 | } |
||
| 81 | } |
||
| 82 |