1 | <?php |
||
17 | class Cli implements ResponseInterface |
||
18 | { |
||
19 | protected $statusCode; |
||
20 | protected $body; |
||
21 | |||
22 | 4 | public function getStatusCode() |
|
26 | |||
27 | 3 | public function getBody() |
|
31 | |||
32 | 3 | public function withBody(StreamInterface $body) |
|
37 | |||
38 | 4 | public function withStatus($status) |
|
43 | |||
44 | public function withHeader($header, $value) |
||
48 | } |
||
49 |