| 1 | <?php |
||
| 15 | class StreamResult extends AbstractResult |
||
| 16 | { |
||
| 17 | /** @var StreamConsumable */ |
||
| 18 | protected $callback; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param StreamConsumable $callback |
||
| 22 | */ |
||
| 23 | public function setCallback(StreamConsumable $callback): void |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return EntityInterface|StreamedRows |
||
| 30 | */ |
||
| 31 | public function result(): EntityInterface |
||
| 49 | } |
||
| 50 |