| 1 | <?php |
||
| 7 | abstract class BaseHandler implements HandleOutputInterface |
||
| 8 | { |
||
| 9 | protected $buildNull = true; |
||
| 10 | protected $onlyString = false; |
||
| 11 | protected $header = []; |
||
| 12 | |||
| 13 | public function writeHeader($headerList = null) |
||
| 26 | |||
| 27 | public function writeData($data) |
||
| 31 | |||
| 32 | public function processResponse(HttpResponse $response) |
||
| 47 | } |
||
| 48 |