1 | <?php |
||
25 | class GetDefaultConfigXMLResponse |
||
26 | { |
||
27 | /** |
||
28 | * @var \SimpleXMLElement |
||
29 | */ |
||
30 | protected $rawXml; |
||
31 | |||
32 | /** |
||
33 | * BaseResponse constructor. |
||
34 | * |
||
35 | * @param \SimpleXMLElement $xml |
||
36 | */ |
||
37 | public function __construct(\SimpleXMLElement $xml) |
||
41 | |||
42 | /** |
||
43 | * @return \SimpleXMLElement |
||
44 | */ |
||
45 | public function getRawXml() |
||
49 | } |
||
50 |