1 | <?php |
||
7 | class XmlApiResponse extends BaseApiResponse |
||
8 | { |
||
9 | /** |
||
10 | * @param int $code |
||
11 | * @param string $data |
||
12 | * @param string $contentType |
||
13 | * @param string $charset |
||
14 | */ |
||
15 | public function __construct($code, $data = '', $contentType = 'application/xml', $charset = 'utf-8') |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | * @throws JsonException |
||
23 | */ |
||
24 | public function getEncodedData() |
||
28 | } |
||
29 |