1 | <?php |
||
8 | class JsonApiResponse extends BaseApiResponse |
||
9 | { |
||
10 | /** @var string|null */ |
||
11 | private $encodedData = null; |
||
12 | |||
13 | /** |
||
14 | * @param int $code |
||
15 | * @param mixed $data |
||
16 | * @param string $contentType |
||
17 | * @param string $charset |
||
18 | */ |
||
19 | 18 | public function __construct($code, $data = '', $contentType = 'application/json', $charset = 'utf-8') |
|
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | * @throws JsonException |
||
27 | */ |
||
28 | public function getEncodedData() |
||
35 | } |
||
36 |