| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __construct($content = null, int $code = Http::CODE_OK, array $config = []) |
||
| 17 | { |
||
| 18 | $this->config = $config; |
||
| 19 | $this->message = (new Message()) |
||
| 20 | ->withCode($code) |
||
| 21 | ->withHeaders([ |
||
| 22 | 'Content-Type' => Http::CONTENT_JSON |
||
| 23 | ]) |
||
| 24 | ->withBody($this->encodeAndContainData($content)) |
||
| 25 | ; |
||
| 50 |