Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 57.14% |
Changes | 0 |
1 | <?php |
||
14 | class midcom_response_json extends midcom_response |
||
15 | { |
||
16 | 11 | public function __construct(array $data = []) |
|
17 | { |
||
18 | 11 | parent::__construct(); |
|
19 | 11 | $this->_data = $data; |
|
20 | 11 | $this->headers->set('Content-Type', 'application/json; charset=' . $this->encoding); |
|
21 | } |
||
22 | |||
23 | /** |
||
24 | * Sends the response to the client and shuts down the environment |
||
25 | */ |
||
26 | public function sendContent() |
||
30 | } |
||
31 | } |
||
32 |