| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 93 | public function render(AbstractBlock $block, ElementRendererInterface $htmlRenderer, bool $inTightList = false) |
|
| 32 | { |
||
| 33 | 93 | if (!($block instanceof ThematicBreak)) { |
|
| 34 | 3 | throw new \InvalidArgumentException('Incompatible block type: ' . \get_class($block)); |
|
| 35 | } |
||
| 36 | |||
| 37 | 90 | $attrs = $block->getData('attributes', []); |
|
| 38 | |||
| 39 | 90 | return new HtmlElement('hr', $attrs, '', true); |
|
| 40 | } |
||
| 41 | } |
||
| 42 |