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