Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
45 | 484 | public function removeAttribute(TemplateEvent $event) |
|
46 | { |
||
47 | 484 | $doc = $event->getTemplate()->getDocument(); |
|
48 | 484 | $xp = new \DOMXPath($doc); |
|
49 | 484 | $xp->registerNamespace('twital', Twital::NS); |
|
50 | 484 | $attributes = $xp->query("//@twital:__internal-id__"); |
|
51 | 484 | foreach ($attributes as $attribute) { |
|
52 | 3 | $attribute->ownerElement->removeAttributeNode($attribute); |
|
53 | 484 | } |
|
54 | 484 | } |
|
55 | } |
||
56 |