1 | <?php |
||
14 | class InternalEntityFactory |
||
15 | { |
||
16 | /** |
||
17 | * @return Workbook |
||
18 | */ |
||
19 | 77 | public function createWorkbook() |
|
23 | |||
24 | /** |
||
25 | * @param string $worksheetFilePath |
||
26 | * @param Sheet $externalSheet |
||
27 | * @return Worksheet |
||
28 | */ |
||
29 | 77 | public function createWorksheet($worksheetFilePath, Sheet $externalSheet) |
|
33 | |||
34 | /** |
||
35 | * @param int $sheetIndex Index of the sheet, based on order in the workbook (zero-based) |
||
36 | * @param string $associatedWorkbookId ID of the sheet's associated workbook |
||
37 | * @param SheetManager $sheetManager To manage sheets |
||
38 | * @return Sheet |
||
39 | */ |
||
40 | 77 | public function createSheet($sheetIndex, $associatedWorkbookId, $sheetManager) |
|
44 | |||
45 | /** |
||
46 | * @return \ZipArchive |
||
47 | */ |
||
48 | 70 | public function createZipArchive() |
|
52 | } |
||
53 |