Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | 486 | public function addAttribute(TemplateEvent $event) |
|
33 | { |
||
34 | 486 | $doc = $event->getTemplate()->getDocument(); |
|
35 | 486 | $xp = new \DOMXPath($doc); |
|
36 | /** |
||
37 | * @var \DOMElement[] $nodes |
||
38 | */ |
||
39 | 486 | $nodes = $xp->query("//*[@*[namespace-uri()='" . Twital::NS . "']]"); |
|
40 | 486 | foreach ($nodes as $node) { |
|
41 | 66 | $node->setAttributeNS(Twital::NS, '__internal-id__', microtime(1) . mt_rand()); |
|
42 | 486 | } |
|
43 | 486 | } |
|
44 | |||
56 |