1 | <?php |
||
22 | class InternalFactory implements InternalFactoryInterface |
||
23 | { |
||
24 | /** @var EntityFactory */ |
||
25 | private $entityFactory; |
||
26 | |||
27 | /** |
||
28 | * InternalFactory constructor. |
||
29 | * |
||
30 | * @param EntityFactory $entityFactory |
||
31 | */ |
||
32 | 48 | public function __construct(EntityFactory $entityFactory) |
|
36 | |||
37 | /** |
||
38 | * @param OptionsManagerInterface $optionsManager |
||
39 | * @return WorkbookManager |
||
40 | */ |
||
41 | 43 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
53 | |||
54 | /** |
||
55 | * @param StyleHelper $styleHelper |
||
56 | * @return WorksheetManager |
||
57 | */ |
||
58 | 43 | private function createWorksheetManager(StyleHelper $styleHelper) |
|
65 | |||
66 | /** |
||
67 | * @param OptionsManagerInterface $optionsManager |
||
68 | * @return FileSystemHelper |
||
69 | */ |
||
70 | 43 | public function createFileSystemHelper(OptionsManagerInterface $optionsManager) |
|
75 | |||
76 | /** |
||
77 | * @param OptionsManagerInterface $optionsManager |
||
78 | * @return StyleHelper |
||
79 | */ |
||
80 | 43 | private function createStyleHelper(OptionsManagerInterface $optionsManager) |
|
85 | |||
86 | /** |
||
87 | * @return Escaper\ODS |
||
88 | */ |
||
89 | 43 | private function createStringsEscaper() |
|
93 | |||
94 | /** |
||
95 | * @return StringHelper |
||
96 | */ |
||
97 | 43 | private function createStringHelper() |
|
101 | } |