1 | <?php |
||
20 | class ManagerFactory implements ManagerFactoryInterface |
||
21 | { |
||
22 | /** @var InternalEntityFactory */ |
||
23 | protected $entityFactory; |
||
24 | |||
25 | /** @var HelperFactory $helperFactory */ |
||
26 | protected $helperFactory; |
||
27 | |||
28 | /** |
||
29 | * @param InternalEntityFactory $entityFactory |
||
30 | * @param HelperFactory $helperFactory |
||
31 | */ |
||
32 | 40 | public function __construct(InternalEntityFactory $entityFactory, HelperFactory $helperFactory) |
|
37 | |||
38 | /** |
||
39 | * @param OptionsManagerInterface $optionsManager |
||
40 | * @return WorkbookManager |
||
41 | */ |
||
42 | 35 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
64 | |||
65 | /** |
||
66 | * @param StyleManager $styleManager |
||
67 | * @return WorksheetManager |
||
68 | */ |
||
69 | 35 | private function createWorksheetManager(StyleManager $styleManager) |
|
76 | |||
77 | /** |
||
78 | * @return SheetManager |
||
79 | */ |
||
80 | 35 | public function createSheetManager() |
|
86 | |||
87 | /** |
||
88 | * @param OptionsManagerInterface $optionsManager |
||
89 | * @return StyleManager |
||
90 | */ |
||
91 | 35 | private function createStyleManager(OptionsManagerInterface $optionsManager) |
|
97 | |||
98 | /** |
||
99 | * @param OptionsManagerInterface $optionsManager |
||
100 | * @return StyleRegistry |
||
101 | */ |
||
102 | 35 | private function createStyleRegistry(OptionsManagerInterface $optionsManager) |
|
108 | |||
109 | /** |
||
110 | * @return StyleMerger |
||
111 | */ |
||
112 | 35 | private function createStyleMerger() |
|
116 | } |
||
117 |