Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
33 | 2 | public function __toXML() |
|
34 | { |
||
35 | 2 | $components = explode('\\', get_class($this)); |
|
36 | 2 | $rootNode = end($components); |
|
37 | 2 | $xml = new \SimpleXMLElement("<?xml version=\"1.0\"?><$rootNode></$rootNode>"); |
|
38 | 2 | $array = json_decode(json_encode($this), true); |
|
39 | |||
40 | 2 | $this->composeXML($array, $xml); |
|
41 | |||
42 | 2 | return $xml; |
|
43 | } |
||
44 | |||
61 |