Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
12 | 4 | protected function transformXmlToArray(string $xmlString): array |
|
13 | { |
||
14 | 4 | if (mb_detect_encoding($xmlString, 'UTF-8', true) === false) { |
|
15 | $xmlString = utf8_encode($xmlString); |
||
16 | } |
||
17 | |||
18 | 4 | $xml = simplexml_load_string($xmlString); |
|
19 | 4 | $json = json_encode($xml); |
|
20 | |||
21 | 4 | return json_decode($json, true); |
|
22 | } |
||
23 | } |
||
24 |