1 | <?php |
||
24 | class InternalFactory implements InternalFactoryInterface |
||
25 | { |
||
26 | /** @var EntityFactory */ |
||
27 | private $entityFactory; |
||
28 | |||
29 | /** |
||
30 | * InternalFactory constructor. |
||
31 | * |
||
32 | * @param EntityFactory $entityFactory |
||
33 | */ |
||
34 | 51 | public function __construct(EntityFactory $entityFactory) |
|
38 | |||
39 | /** |
||
40 | * @param OptionsManagerInterface $optionsManager |
||
41 | * @return WorkbookManager |
||
42 | */ |
||
43 | 46 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
58 | |||
59 | /** |
||
60 | * @param OptionsManagerInterface $optionsManager |
||
61 | * @param StyleManager $styleManager |
||
62 | * @param SharedStringsManager $sharedStringsManager |
||
63 | * @return WorksheetManager |
||
64 | */ |
||
65 | 46 | private function createWorksheetManager( |
|
76 | |||
77 | /** |
||
78 | * @param OptionsManagerInterface $optionsManager |
||
79 | * @return StyleManager |
||
80 | */ |
||
81 | 46 | private function createStyleManager(OptionsManagerInterface $optionsManager) |
|
86 | |||
87 | /** |
||
88 | * @param OptionsManagerInterface $optionsManager |
||
89 | * @return StyleRegistry |
||
90 | */ |
||
91 | 46 | private function createStyleRegistry(OptionsManagerInterface $optionsManager) |
|
96 | |||
97 | /** |
||
98 | * @param string $xlFolder Path to the "xl" folder |
||
99 | * @return SharedStringsManager |
||
100 | */ |
||
101 | 46 | private function createSharedStringsManager($xlFolder) |
|
106 | |||
107 | /** |
||
108 | * @param OptionsManagerInterface $optionsManager |
||
109 | * @return FileSystemHelper |
||
110 | */ |
||
111 | 46 | private function createFileSystemHelper(OptionsManagerInterface $optionsManager) |
|
116 | |||
117 | /** |
||
118 | * @return Escaper\XLSX |
||
119 | */ |
||
120 | 46 | private function createStringsEscaper() |
|
124 | |||
125 | /** |
||
126 | * @return StringHelper |
||
127 | */ |
||
128 | 46 | private function createStringHelper() |
|
132 | } |