Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public function __toXML() |
|
28 | { |
||
29 | 2 | $components = explode('\\', get_class($this)); |
|
30 | 2 | $rootNode = end($components); |
|
31 | 2 | $xml = new \SimpleXMLElement("<?xml version=\"1.0\"?><$rootNode></$rootNode>"); |
|
32 | 2 | $array = json_decode(json_encode($this), true); |
|
33 | |||
34 | 2 | $this->composeXML($array, $xml); |
|
35 | |||
36 | 2 | return $xml; |
|
37 | } |
||
38 | |||
55 |