Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
32 | 3 | public function format($response) |
|
33 | { |
||
34 | 3 | if (stripos($this->contentType, 'charset') === false) { |
|
35 | 3 | $this->contentType .= '; charset=' . $response->charset; |
|
36 | 3 | } |
|
37 | 3 | $response->getHeaders()->set('Content-Type', $this->contentType); |
|
38 | 3 | if ($response->data !== null) { |
|
39 | 3 | $response->content = $response->data; |
|
40 | 3 | } |
|
41 | 3 | } |
|
42 | } |
||
43 |