| 1 | <?php |
||
| 19 | class EntityFactory |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @param mixed $cellValue |
||
| 23 | * @param Style|null $cellStyle |
||
| 24 | * @return Cell |
||
| 25 | */ |
||
| 26 | 75 | public static function createCell($cellValue, Style $cellStyle = null) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @param array $cells |
||
| 33 | * @param Style|null $rowStyle |
||
| 34 | * @return Row |
||
| 35 | */ |
||
| 36 | 75 | public static function createRow(array $cells = [], Style $rowStyle = null) |
|
| 43 | } |
||
| 44 |