| 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 | 	public function __construct ($stream) { | 
            ||
| 41 | |||
| 42 | |||
| 43 | /**  | 
            ||
| 44 | * @param IOutput $output a small wrapper that handles output  | 
            ||
| 45 | */  | 
            ||
| 46 | 	public function callback (IOutput $output) { | 
            ||
| 50 | |||
| 51 | }  | 
            ||
| 52 |