Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 4 | public function visit(\DOMAttr $att, Compiler $context) |
|
16 | { |
||
17 | 4 | $node = $att->ownerElement; |
|
18 | 4 | DOMHelper::removeChilds($node); |
|
19 | 4 | $pi = $context->createPrintNode(html_entity_decode($att->value)); |
|
20 | 4 | $node->appendChild($pi); |
|
21 | |||
22 | 4 | $node->removeAttributeNode($att); |
|
23 | 4 | } |
|
24 | } |
||
25 |