Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
14 | 3 | public function visit(\DOMAttr $att, Compiler $context) |
|
15 | { |
||
16 | 3 | $node = $att->ownerElement; |
|
17 | |||
18 | 3 | $pi = $context->createControlNode("{$att->localName} " . html_entity_decode($att->value)); |
|
19 | 3 | $node->parentNode->insertBefore($pi, $node); |
|
20 | |||
21 | 3 | $pi = $context->createControlNode("end{$att->localName}"); |
|
22 | |||
23 | 3 | $node->parentNode->insertBefore($pi, $node->nextSibling); // insert after |
|
24 | |||
25 | 3 | $node->removeAttributeNode($att); |
|
26 | 3 | } |
|
27 | } |
||
28 |