PHP Класс Symfony\Component\HttpKernel\Controller\ControllerResolver

This implementation uses the '_controller' request attribute to determine the controller to execute and uses the request attributes to determine the controller method arguments.
Автор: Fabien Potencier ([email protected])
Наследование: implements Symfony\Component\HttpKernel\Controller\ControllerResolverInterface
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( Psr\Log\LoggerInterface $logger = null ) Constructor.
getArguments ( Request $request, $controller )
getController ( Request $request )

Защищенные методы

Метод Описание
createController ( string $controller ) : callable Returns a callable for the given controller.
doGetArguments ( Request $request, callable $controller, array $parameters ) : array
instantiateController ( string $class ) : object Returns an instantiated controller.

Приватные методы

Метод Описание
getControllerError ( $callable )

Описание методов

__construct() публичный Метод

Constructor.
public __construct ( Psr\Log\LoggerInterface $logger = null )
$logger Psr\Log\LoggerInterface A LoggerInterface instance

createController() защищенный Метод

Returns a callable for the given controller.
protected createController ( string $controller ) : callable
$controller string A Controller string
Результат callable A PHP callable

doGetArguments() защищенный Метод

Устаревший: This method is deprecated as of 3.1 and will be removed in 4.0. Implement the ArgumentResolverInterface and inject it in the HttpKernel instead.
protected doGetArguments ( Request $request, callable $controller, array $parameters ) : array
$request Symfony\Component\HttpFoundation\Request
$controller callable
$parameters array
Результат array The arguments to use when calling the action

getArguments() публичный Метод

Устаревший: This method is deprecated as of 3.1 and will be removed in 4.0. Implement the ArgumentResolverInterface and inject it in the HttpKernel instead.
public getArguments ( Request $request, $controller )
$request Symfony\Component\HttpFoundation\Request

getController() публичный Метод

This method looks for a '_controller' request attribute that represents the controller name (a string like ClassName::MethodName).
public getController ( Request $request )
$request Symfony\Component\HttpFoundation\Request

instantiateController() защищенный Метод

Returns an instantiated controller.
protected instantiateController ( string $class ) : object
$class string A class name
Результат object