| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | 6 | public function render(FieldViewInterface $view, array $attributes): string |
|
| 27 | { |
||
| 28 | 6 | if (!isset($attributes['type'])) { |
|
| 29 | 6 | $attributes['type'] = 'checkbox'; |
|
| 30 | } |
||
| 31 | |||
| 32 | 6 | $attributes['name'] = $view->name(); |
|
| 33 | 6 | $attributes['value'] = $view->httpValue(); |
|
|
|
|||
| 34 | 6 | $attributes['checked'] = $view->checked(); |
|
| 35 | |||
| 36 | 6 | return HtmlRenderer::element('input', $attributes); |
|
| 37 | } |
||
| 53 |