1 | <?php |
||
28 | class StreamResponse extends Response implements ICallbackResponse { |
||
29 | |||
30 | /** |
||
31 | * @var resource |
||
32 | */ |
||
33 | protected $stream; |
||
34 | |||
35 | /** |
||
36 | * @param resource $stream |
||
37 | */ |
||
38 | 3 | public function __construct ($stream) { |
|
41 | |||
42 | |||
43 | /** |
||
44 | * @param IOutput $output a small wrapper that handles output |
||
45 | */ |
||
46 | 1 | public function callback (IOutput $output) { |
|
49 | |||
50 | } |
||
51 |