| 1 | <?php |
||
| 11 | class StreamedRow implements EntityInterface |
||
| 12 | { |
||
| 13 | /** @var array */ |
||
| 14 | protected $rows = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * StreamedRow constructor. |
||
| 18 | * |
||
| 19 | * @param array $rows |
||
| 20 | */ |
||
| 21 | public function __construct(array $rows) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return GenericRow |
||
| 28 | */ |
||
| 29 | public function getRow(): GenericRow |
||
| 33 | } |
||
| 34 |