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) |
|
59 | |||
60 | /** |
||
61 | * @param OptionsManagerInterface $optionsManager |
||
62 | * @param StyleManager $styleManager |
||
63 | * @param SharedStringsManager $sharedStringsManager |
||
64 | * @return WorksheetManager |
||
65 | */ |
||
66 | 46 | private function createWorksheetManager( |
|
77 | |||
78 | /** |
||
79 | * @param OptionsManagerInterface $optionsManager |
||
80 | * @return StyleManager |
||
81 | */ |
||
82 | 46 | private function createStyleManager(OptionsManagerInterface $optionsManager) |
|
87 | |||
88 | /** |
||
89 | * @param OptionsManagerInterface $optionsManager |
||
90 | * @return StyleRegistry |
||
91 | */ |
||
92 | 46 | private function createStyleRegistry(OptionsManagerInterface $optionsManager) |
|
97 | |||
98 | /** |
||
99 | * @param string $xlFolder Path to the "xl" folder |
||
100 | * @return SharedStringsManager |
||
101 | */ |
||
102 | 46 | private function createSharedStringsManager($xlFolder) |
|
107 | |||
108 | /** |
||
109 | * @param OptionsManagerInterface $optionsManager |
||
110 | * @return FileSystemHelper |
||
111 | */ |
||
112 | 46 | private function createFileSystemHelper(OptionsManagerInterface $optionsManager) |
|
119 | |||
120 | /** |
||
121 | * @return ZipHelper |
||
122 | */ |
||
123 | 46 | private function createZipHelper() |
|
127 | |||
128 | /** |
||
129 | * @return Escaper\XLSX |
||
130 | */ |
||
131 | 46 | private function createStringsEscaper() |
|
135 | |||
136 | /** |
||
137 | * @return StringHelper |
||
138 | */ |
||
139 | 46 | private function createStringHelper() |
|
143 | } |