| 1 | <?php |
||
| 14 | class ControllerResolver implements ControllerResolverInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var ContainerInterface |
||
| 18 | */ |
||
| 19 | private $container; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @Inject("@service_container") |
||
| 23 | * @param ContainerInterface $container |
||
| 24 | */ |
||
| 25 | 2 | public function __construct(ContainerInterface $container) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 1 | public function getController(Request $request) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | 1 | public function getArguments(Request $request, $controller) |
|
| 59 | } |
||
| 60 |