1 | <?php |
||
25 | class InternalFactory implements InternalFactoryInterface |
||
26 | { |
||
27 | /** @var EntityFactory */ |
||
28 | private $entityFactory; |
||
29 | |||
30 | /** |
||
31 | * InternalFactory constructor. |
||
32 | * |
||
33 | * @param EntityFactory $entityFactory |
||
34 | */ |
||
35 | 51 | public function __construct(EntityFactory $entityFactory) |
|
39 | |||
40 | /** |
||
41 | * @param OptionsManagerInterface $optionsManager |
||
42 | * @return WorkbookManager |
||
43 | */ |
||
44 | 46 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
60 | |||
61 | /** |
||
62 | * @param OptionsManagerInterface $optionsManager |
||
63 | * @param SharedStringsHelper $sharedStringsHelper |
||
64 | * @param StyleHelper $styleHelper |
||
65 | * @return WorksheetManager |
||
66 | */ |
||
67 | 46 | private function createWorksheetManager( |
|
78 | |||
79 | /** |
||
80 | * @param string $xlFolder Path to the "xl" folder |
||
81 | * @return SharedStringsHelper |
||
82 | */ |
||
83 | 46 | private function createSharedStringsHelper($xlFolder) |
|
87 | |||
88 | /** |
||
89 | * @param OptionsManagerInterface $optionsManager |
||
90 | * @return FileSystemHelper |
||
91 | */ |
||
92 | 46 | private function createFileSystemHelper(OptionsManagerInterface $optionsManager) |
|
97 | |||
98 | /** |
||
99 | * @param OptionsManagerInterface $optionsManager |
||
100 | * @return StyleHelper |
||
101 | */ |
||
102 | 46 | private function createStyleHelper(OptionsManagerInterface $optionsManager) |
|
107 | |||
108 | /** |
||
109 | * @return Escaper\XLSX |
||
110 | */ |
||
111 | 46 | private function createStringsEscaper() |
|
115 | |||
116 | /** |
||
117 | * @return StringHelper |
||
118 | */ |
||
119 | 46 | private function createStringHelper() |
|
123 | } |