| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 184 | public function render(Node $node, ChildNodeRendererInterface $childRenderer): \Stringable |
|
| 36 | { |
||
| 37 | 184 | Strong::assertInstanceOf($node); |
|
| 38 | |||
| 39 | 182 | $attrs = $node->data->get('attributes'); |
|
| 40 | |||
| 41 | 182 | return new HtmlElement('strong', $attrs, $childRenderer->renderNodes($node->children())); |
|
| 42 | } |
||
| 57 |