| 1 | <?php |
||
| 16 | class InternalEntityFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @return Workbook |
||
| 20 | */ |
||
| 21 | 73 | public function createWorkbook() |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $worksheetFilePath |
||
| 28 | * @param Sheet $externalSheet |
||
| 29 | * @return Worksheet |
||
| 30 | */ |
||
| 31 | 73 | public function createWorksheet($worksheetFilePath, Sheet $externalSheet) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param int $sheetIndex Index of the sheet, based on order in the workbook (zero-based) |
||
| 38 | * @param string $associatedWorkbookId ID of the sheet's associated workbook |
||
| 39 | * @param SheetManager $sheetManager To manage sheets |
||
| 40 | * @return Sheet |
||
| 41 | */ |
||
| 42 | 73 | public function createSheet($sheetIndex, $associatedWorkbookId, $sheetManager) |
|
| 46 | |||
| 47 | /** |
||
| 48 | * @return \ZipArchive |
||
| 49 | */ |
||
| 50 | 66 | public function createZipArchive() |
|
| 54 | } |
||
| 55 |