| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | trait JsonTrait |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Generate JSON response. |
||
| 24 | * |
||
| 25 | * @param ResponseInterface $response |
||
| 26 | * @param mixed $payload |
||
| 27 | * @param int $code |
||
| 28 | * @return ResponseInterface |
||
| 29 | */ |
||
| 30 | private function writeJson(ResponseInterface $response, $payload, int $code = 200): ResponseInterface |
||
| 45 |