1 | <?php |
||
6 | class ContentResponse implements Response |
||
7 | { |
||
8 | /** |
||
9 | * @var Content |
||
10 | */ |
||
11 | private $content; |
||
12 | |||
13 | /** |
||
14 | * @param Content $content |
||
15 | */ |
||
16 | public function __construct(Content $content) |
||
20 | |||
21 | public function flush() |
||
28 | |||
29 | /** |
||
30 | * @return int |
||
31 | */ |
||
32 | protected function getResponseCode(): int |
||
36 | |||
37 | } |
||
38 |