| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 93 | public function render(Node $node, ChildNodeRendererInterface $childRenderer) |
|
| 35 | { |
||
| 36 | 93 | if (! ($node instanceof ThematicBreak)) { |
|
| 37 | 3 | throw new \InvalidArgumentException('Incompatible node type: ' . \get_class($node)); |
|
| 38 | } |
||
| 39 | |||
| 40 | 90 | $attrs = $node->data->get('attributes'); |
|
| 41 | |||
| 42 | 90 | return new HtmlElement('hr', $attrs, '', true); |
|
| 43 | } |
||
| 45 |