| 1 | <?php |
||
| 5 | use BestServedCold\PhalueObjects\Format; |
||
| 6 | |||
| 7 | final class Xml extends Format |
||
| 8 | { |
||
| 9 | public function parse() |
||
| 19 | |||
| 20 | private function xmlJsonFix($xml) |
||
| 21 | { |
||
| 22 | return json_decode( |
||
| 23 | str_replace( |
||
| 24 | ':[]', |
||
| 25 | ':null', |
||
| 26 | str_replace( |
||
| 27 | ':{}', |
||
| 28 | ':null', |
||
| 29 | json_encode((array) $xml) |
||
| 30 | ) |
||
| 31 | ), |
||
| 32 | 1 |
||
| 33 | ); |
||
| 34 | } |
||
| 36 |