1 | <?php |
||
19 | class EmitterDecorator implements EmitterInterface |
||
20 | { |
||
21 | protected $emitter; |
||
22 | protected $streamEmitter; |
||
23 | |||
24 | public function __construct(SapiEmitter $emitter, SapiStreamEmitter $streamEmitter) |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function emit(ResponseInterface $response) : bool |
||
43 | } |