Skip to content

Commit a42702e

Browse files
committed
:octocat: xml-support
1 parent 086788a commit a42702e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/HTTPResponse.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ class HTTPResponse implements HTTPResponseInterface, ContainerInterface{
4646
*/
4747
public function __get(string $property){
4848

49-
if($property === 'json'){
50-
return json_decode($this->body);
51-
}
52-
elseif($property === 'json_array'){
53-
return json_decode($this->body, true);
49+
switch($property){
50+
case 'json': return json_decode($this->body);
51+
case 'json_array': return json_decode($this->body, true);
52+
case 'xml': return simplexml_load_string($this->body);
53+
case 'xml_array': return json_decode(json_encode(simplexml_load_string($this->body)), true); // cruel, but works.
5454
}
5555

5656
return $this->containerGet($property);

0 commit comments

Comments
 (0)