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 | 48 | public function __construct(EntityFactory $entityFactory) |
|
38 | |||
39 | /** |
||
40 | * @param OptionsManagerInterface $optionsManager |
||
41 | * @return WorkbookManager |
||
42 | */ |
||
43 | 43 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
55 | |||
56 | /** |
||
57 | * @return WorksheetManager |
||
58 | */ |
||
59 | 43 | private function createWorksheetManager() |
|
66 | |||
67 | /** |
||
68 | * @param OptionsManagerInterface $optionsManager |
||
69 | * @return StyleManager |
||
70 | */ |
||
71 | 43 | private function createStyleManager(OptionsManagerInterface $optionsManager) |
|
76 | |||
77 | /** |
||
78 | * @param OptionsManagerInterface $optionsManager |
||
79 | * @return StyleRegistry |
||
80 | */ |
||
81 | 43 | private function createStyleRegistry(OptionsManagerInterface $optionsManager) |
|
86 | |||
87 | /** |
||
88 | * @param OptionsManagerInterface $optionsManager |
||
89 | * @return FileSystemHelper |
||
90 | */ |
||
91 | 43 | public function createFileSystemHelper(OptionsManagerInterface $optionsManager) |
|
98 | |||
99 | /** |
||
100 | * @return ZipHelper |
||
101 | */ |
||
102 | 43 | private function createZipHelper() |
|
106 | |||
107 | /** |
||
108 | * @return Escaper\ODS |
||
109 | */ |
||
110 | 43 | private function createStringsEscaper() |
|
114 | |||
115 | /** |
||
116 | * @return StringHelper |
||
117 | */ |
||
118 | 43 | private function createStringHelper() |
|
122 | } |