1 | <?php |
||
21 | class ManagerFactory implements ManagerFactoryInterface |
||
22 | { |
||
23 | /** @var EntityFactory */ |
||
24 | protected $entityFactory; |
||
25 | |||
26 | /** @var HelperFactory $helperFactory */ |
||
27 | protected $helperFactory; |
||
28 | |||
29 | /** |
||
30 | * @param EntityFactory $entityFactory |
||
31 | * @param HelperFactory $helperFactory |
||
32 | */ |
||
33 | 48 | public function __construct(EntityFactory $entityFactory, HelperFactory $helperFactory) |
|
38 | |||
39 | /** |
||
40 | * @param OptionsManagerInterface $optionsManager |
||
41 | * @return WorkbookManager |
||
42 | */ |
||
43 | 43 | public function createWorkbookManager(OptionsManagerInterface $optionsManager) |
|
63 | |||
64 | /** |
||
65 | * @return WorksheetManager |
||
66 | */ |
||
67 | 43 | private function createWorksheetManager() |
|
74 | |||
75 | /** |
||
76 | * @return SheetManager |
||
77 | */ |
||
78 | 43 | public function createSheetManager() |
|
83 | |||
84 | /** |
||
85 | * @param OptionsManagerInterface $optionsManager |
||
86 | * @return StyleManager |
||
87 | */ |
||
88 | 43 | private function createStyleManager(OptionsManagerInterface $optionsManager) |
|
93 | |||
94 | /** |
||
95 | * @param OptionsManagerInterface $optionsManager |
||
96 | * @return StyleRegistry |
||
97 | */ |
||
98 | 43 | private function createStyleRegistry(OptionsManagerInterface $optionsManager) |
|
103 | } |
||
104 |