Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
14 | 3 | public function visit(\DOMAttr $att, Compiler $context) |
|
15 | { |
||
16 | 3 | $node = $att->ownerElement; |
|
17 | 3 | $pi = $context->createPrintNode(html_entity_decode($att->value)); |
|
18 | |||
19 | 3 | $node->parentNode->replaceChild($pi, $node); |
|
20 | |||
21 | 3 | $node->removeAttributeNode($att); |
|
22 | 3 | return Attribute::STOP_NODE; |
|
23 | } |
||
24 | } |
||
25 |