Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function run(ResponseInterface $response): bool |
||
21 | { |
||
22 | $this->checker->checkHeadersAlreadySent(); |
||
23 | $this->checker->checkOutputAlreadyWrote(); |
||
24 | |||
25 | $this->emitter->emitHeaders($response); |
||
26 | $this->emitter->emitStatusLine($response); |
||
27 | $this->emitter->emitBody($response); |
||
28 | |||
29 | return true; |
||
30 | } |
||
31 | } |