| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class JsonHandler |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * |
||
| 18 | * @param ResponseInterface $response |
||
| 19 | * @param int $statusCode |
||
| 20 | * @param array $data |
||
| 21 | * |
||
| 22 | * @return ResponseInterface |
||
| 23 | * |
||
| 24 | * @throws \InvalidArgumentException |
||
| 25 | * @throws \RuntimeException |
||
| 26 | */ |
||
| 27 | public function render(ResponseInterface $response, $statusCode = 200, array $data = []) |
||
| 38 |