| 1 | <?php |
||
| 8 | abstract class AbstractResponse extends Response |
||
| 9 | { |
||
| 10 | public function __construct($data, int $status = 200, array $headers = []) |
||
| 14 | |||
| 15 | protected function prepareHeaders(array $headers) |
||
| 19 | |||
| 20 | protected function prepareBody($data): Stream |
||
| 24 | |||
| 25 | abstract protected function formatData($data): string; |
||
| 26 | |||
| 27 | protected function createBodyFromString(string $string): Stream |
||
| 35 | } |
||
| 36 |