| 1 | <?php |
||
| 15 | class EntityFactory |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @param mixed $cellValue |
||
| 19 | * @param Style|null $cellStyle |
||
| 20 | * @return Cell |
||
| 21 | */ |
||
| 22 | 75 | public static function createCell($cellValue, Style $cellStyle = null) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param array $cells |
||
| 29 | * @param Style|null $rowStyle |
||
| 30 | * @return Row |
||
| 31 | */ |
||
| 32 | 75 | public static function createRow(array $cells = [], Style $rowStyle = null) |
|
| 39 | } |
||
| 40 |