| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 70 | public function formatConfig(array $items = []): string |
||
| 71 | { |
||
| 72 | $html = ''; |
||
| 73 | foreach ($items as $label => $value) { |
||
| 74 | if (empty($value)) { |
||
| 75 | continue; |
||
| 76 | } |
||
| 77 | $html .= Html::tag('dt', $label) . Html::tag('dd', $value); |
||
| 78 | } |
||
| 79 | |||
| 80 | return Html::tag('dl', $html, ['class' => 'dl-horizontal dl-config']); |
||
| 81 | } |
||
| 83 |