Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 20 | public function addCdataChild(string $name, string $value = null, string $namespace = null): SimpleXMLE |
|
20 | { |
||
21 | 20 | $element = $this->addChild($name, null, $namespace); |
|
22 | 20 | $dom = dom_import_simplexml($element); |
|
23 | 20 | $elementOwner = $dom->ownerDocument; |
|
24 | 20 | $dom->appendChild($elementOwner->createCDATASection($value)); |
|
25 | 20 | return $element; |
|
26 | } |
||
27 | |||
44 |