Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function format($xml) |
||
29 | { |
||
30 | $dom = new DOMDocument('1.0'); |
||
31 | $dom->preserveWhiteSpace = false; |
||
32 | $dom->formatOutput = true; |
||
33 | $dom->loadXML($xml); |
||
34 | $formatted = $dom->saveXML(); |
||
35 | |||
36 | if (!$formatted) { |
||
37 | throw new Exception("An error occurred while formatting the XML"); |
||
38 | } |
||
39 | |||
40 | return $formatted; |
||
41 | } |
||
43 |