1 | <?php |
||
21 | class ControllerService implements SingletonInterface |
||
22 | { |
||
23 | use ExtendedFacadeInstanceTrait; |
||
24 | |||
25 | /** |
||
26 | * @var ReflectionService |
||
27 | */ |
||
28 | protected $reflectionService; |
||
29 | |||
30 | /** |
||
31 | * @param string $controllerName |
||
32 | * @param string $actionName |
||
33 | * @return array |
||
34 | */ |
||
35 | public function getControllerActionParameters($controllerName, $actionName) |
||
39 | |||
40 | /** |
||
41 | * @param string $controllerName |
||
42 | * @param string $actionName |
||
43 | * @param string $formName |
||
44 | * @return string |
||
45 | * @throws EntryNotFoundException |
||
46 | */ |
||
47 | public function getFormClassNameFromControllerAction($controllerName, $actionName, $formName) |
||
57 | |||
58 | /** |
||
59 | * @param ReflectionService $reflectionService |
||
60 | */ |
||
61 | public function injectReflectionService(ReflectionService $reflectionService) |
||
65 | } |
||
66 |