1 | <?php |
||
13 | class ResponseSender |
||
14 | { |
||
15 | /** |
||
16 | * @var ResponseInterface |
||
17 | */ |
||
18 | private $response; |
||
19 | |||
20 | private function __construct(ResponseInterface $response) |
||
24 | |||
25 | public static function send(ResponseInterface $response) |
||
33 | |||
34 | private function sendStatus() |
||
43 | |||
44 | private function sendHeaders() |
||
52 | |||
53 | private function sendBody() |
||
57 | } |
||
58 |