Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | 7 | public function inject(DOMDocument $dom): void |
|
28 | { |
||
29 | 7 | $elements = $dom->getElementsByTagNameNS($this->parentNS, $this->parentTagName); |
|
30 | |||
31 | 7 | $fragment = $dom->createDocumentFragment(); |
|
32 | 7 | $fragment->appendXML(call_user_func($this->fragment)); |
|
33 | |||
34 | 7 | $elements->item(0)->appendChild($fragment); |
|
35 | 7 | } |
|
44 |