| 1 | <?php |
||
| 16 | class ManialinkFactoryContext |
||
| 17 | { |
||
| 18 | /** @var string */ |
||
| 19 | protected $className; |
||
| 20 | |||
| 21 | /** @var GuiHandler */ |
||
| 22 | protected $guiHandler; |
||
| 23 | |||
| 24 | /** @var Factory */ |
||
| 25 | protected $groupFactory; |
||
| 26 | |||
| 27 | /** @var ActionFactory */ |
||
| 28 | protected $actionFactory; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * ManialinkFactoryContext constructor. |
||
| 32 | * |
||
| 33 | * @param GuiHandler $guiHandler |
||
| 34 | * @param Factory $groupFactory |
||
| 35 | * @param ActionFactory $actionFactory |
||
| 36 | */ |
||
| 37 | 6 | public function __construct($className, GuiHandler $guiHandler, Factory $groupFactory, ActionFactory $actionFactory) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | 6 | public function getClassName() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @return GuiHandler |
||
| 55 | */ |
||
| 56 | 6 | public function getGuiHandler() |
|
| 60 | |||
| 61 | /** |
||
| 62 | * @return Factory |
||
| 63 | */ |
||
| 64 | 6 | public function getGroupFactory() |
|
| 68 | |||
| 69 | /** |
||
| 70 | * @return ActionFactory |
||
| 71 | */ |
||
| 72 | 6 | public function getActionFactory() |
|
| 76 | } |