| 1 | <?php | ||
| 7 | abstract class BaseHandler implements HandleOutputInterface | ||
| 8 | { | ||
| 9 | protected $options = [ | ||
| 10 | 'header' => [], | ||
| 11 | 'build-null' => true, | ||
| 12 | 'only-string' => false | ||
| 13 | ]; | ||
| 14 | |||
| 15 | public function option($option, $value) | ||
| 19 | |||
| 20 | public function writeHeader() | ||
| 26 | |||
| 27 | public function writeOutput(ServiceAbstract $instance) | ||
| 36 | } | ||
| 37 |