| Conditions | 3 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 59 | public function send() |
||
| 60 | { |
||
| 61 | http_response_code($this->statusCode); |
||
| 62 | foreach ($this->headers as $key => $value) { |
||
| 63 | header(sprintf('%s: %s', $key, $value)); |
||
| 64 | } |
||
| 65 | if (!is_null($this->body)) { |
||
| 66 | header(sprintf('Content-Type: %s', $this->contentType)); |
||
| 67 | echo $this->body; |
||
| 68 | } |
||
| 69 | } |
||
| 70 | } |
||
| 71 |