1 | <?php |
||
13 | class ActionFactory |
||
14 | { |
||
15 | /** |
||
16 | * @var ContainerInterface |
||
17 | */ |
||
18 | protected $container; |
||
19 | |||
20 | /** |
||
21 | * @var Registry |
||
22 | */ |
||
23 | protected $configurationRegistry; |
||
24 | |||
25 | /** |
||
26 | * @var ActionInterface[][] |
||
27 | */ |
||
28 | protected $actions = []; |
||
29 | |||
30 | /** |
||
31 | * @param ContainerInterface $container |
||
32 | * @param Registry $configurationRegistry |
||
33 | */ |
||
34 | public function __construct(ContainerInterface $container, Registry $configurationRegistry) |
||
39 | |||
40 | /** |
||
41 | * @param string $customEntityName |
||
42 | * @param string $actionType |
||
43 | * |
||
44 | * @return ActionInterface |
||
45 | */ |
||
46 | public function getAction($customEntityName, $actionType) |
||
72 | } |
||
73 |