Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
32 | 90 | public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) |
|
33 | { |
||
34 | 90 | if (!($block instanceof ThematicBreak)) { |
|
35 | 3 | throw new \InvalidArgumentException('Incompatible block type: ' . get_class($block)); |
|
36 | } |
||
37 | |||
38 | 87 | $attrs = []; |
|
39 | 87 | foreach ($block->getData('attributes', []) as $key => $value) { |
|
40 | $attrs[$key] = Xml::escape($value, true); |
||
41 | } |
||
42 | |||
43 | 87 | return new HtmlElement('hr', $attrs, '', true); |
|
44 | } |
||
45 | } |
||
46 |