| Conditions | 3 |
| Paths | 3 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function run(\DomElement $element) { |
||
| 11 | $transphporm = $element->getAttribute('transphporm'); |
||
| 12 | if ($transphporm === 'remove') $element->parentNode->removeChild($element); |
||
| 13 | else if ($transphporm === 'text') $element->parentNode->replaceChild($element->firstChild, $element); |
||
| 14 | else $element->removeAttribute('transphporm'); |
||
| 15 | } |
||
| 16 | |||
| 20 | } |