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