* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Controller; use Symfony\Component\HttpFoundation\Request; /** * A ControllerResolverInterface implementation knows how to determine the * controller to execute based on a Request object. * * It can also determine the arguments to pass to the Controller. * * A Controller can be any valid PHP callable. * * @author Fabien Potencier */ interface ControllerResolverInterface { /** * Returns the Controller instance associated with a Request. * * As several resolvers can exist for a single application, a resolver must * return false when it is not able to determine the controller. * * The resolver must only throw an exception when it should be able to load * controller but cannot because of some errors made by the developer. * * @return callable|false A PHP callable representing the Controller, * or false if this resolver is not able to determine the controller * * @throws \LogicException If the controller can't be found */ public function getController(Request $request); /** * Returns the arguments to pass to the controller. * * @param Request $request A Request instance * @param callable $controller A PHP callable * * @return array An array of arguments to pass to the controller * * @throws \RuntimeException When value for argument given is not provided * * @deprecated This method is deprecated as of 3.1 and will be removed in 4.0. Please use the {@see ArgumentResolverInterface} instead. */ public function getArguments(Request $request, $controller); } __halt_compiler();----SIGNATURE:----nrzpfRZv9MzHgFuC/gqk0goUOjVawp3oIoMJ7Ofaz4FYFvPptYeoN6TXV8P5FAWytwoAR4b8KuPpb+Tzd0jzKO8BJBpRWRheF3hish2iELAeQ1m9obbt7IpgTqDoSDtVLwjIWhqVgz8s7vc0pQXiEpXvomo09ES5ZqABUHUir9+VblUxSShfhva9ictzBjFybOQbg3ugmcol/MBWbHAHAfdQnfbulJK5Y4MdB9JR7L7Z0FgiisN6OhClvJlf+5BNnxOf/15NCECvaMBdFPFgfjrzwhs0rAWg+k/MZ9o07ngkYzM0jVrqK9EZjr4BvOhlVx24leVk1cEkyxtXbJT1SEeYayw8cZSGieWdzk9OAtzCcqxLXPwnLgU1b9S8xb4dixdhyDhPAJ+PfUWttKzR4h7A4UoiWEV7nBIk6kTRFFTV3VS8ELOk9r5I1ttydG+b5sq/JmvrTMMih99JoonvHS6QxOSuVbjteRGwytu/f7qPLFfefccWTwG7DivO4ZWKjLUOXQSEt2hMZ2dlmR24BUWZ4XuVn0hMH6+UHKfLo8d5ed44qE4F/BVVoHc3q16ouoTOEGrVXGUVSfLbKsrxeBfRPJPP5xHO4WO/J/oXy1qWmv7O3WeGQRat36taIpoIcE6lN9DJG3UbIxST44KPNRmq/VCaMlXmKFtFxKLA8k0=----ATTACHMENT:----ODY1MzYyMTA2OTY3MjA2MiA5MDg2MjYxMzUwMDY2NTQ2IDY5NzcyNTA4NjY4NTY1ODE=