1 | <?php |
||
12 | class RowBuilder |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $values = []; |
||
20 | |||
21 | /** |
||
22 | * Adds a value to the row |
||
23 | * |
||
24 | * @param int $columnIndex |
||
25 | * @param string $value |
||
26 | */ |
||
27 | public function addValue($columnIndex, $value) |
||
33 | |||
34 | /** |
||
35 | * Returns the read row |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | public function getData() |
||
51 | } |
||
52 |