| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 162 | public function render(Node $node, ChildNodeRendererInterface $childRenderer) |
|
| 37 | { |
||
| 38 | 162 | IndentedCode::assertInstanceOf($node); |
|
| 39 | |||
| 40 | 159 | $attrs = $node->data->get('attributes'); |
|
| 41 | |||
| 42 | 159 | return new HtmlElement( |
|
| 43 | 159 | 'pre', |
|
| 44 | 159 | [], |
|
| 45 | 159 | new HtmlElement('code', $attrs, Xml::escape($node->getLiteral())) |
|
| 46 | ); |
||
| 62 |