1 | <?php |
||
28 | class HtmlResponse extends Response { |
||
29 | /** @var string */ |
||
30 | private $content; |
||
31 | |||
32 | /** |
||
33 | * @param string $content |
||
34 | */ |
||
35 | 2 | public function __construct($content) { |
|
38 | |||
39 | /** |
||
40 | * Simply sets the headers and returns the file contents |
||
41 | * @return string the file contents |
||
42 | */ |
||
43 | 1 | public function render() { |
|
46 | |||
47 | } |
||
48 |