| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 79 | 387 | protected function run(): string |
|
| 80 | { |
||
| 81 | 387 | $content = $this->hasFormModelAndAttribute() |
|
| 82 | 327 | ? $this->content ?? $this->getAttributeHint() |
|
| 83 | 62 | : (string) $this->content; |
|
| 84 | |||
| 85 | 387 | return $content === '' |
|
| 86 | 332 | ? '' |
|
| 87 | 55 | : Html::tag($this->tag, $content, $this->tagAttributes) |
|
| 88 | 55 | ->encode($this->encode) |
|
| 89 | 387 | ->render(); |
|
| 90 | } |
||
| 92 |