菜谱项目

ArgumentResolverInterface.php 924B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpKernel\Controller;
  11. use Symfony\Component\HttpFoundation\Request;
  12. /**
  13. * An ArgumentResolverInterface instance knows how to determine the
  14. * arguments for a specific action.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. interface ArgumentResolverInterface
  19. {
  20. /**
  21. * Returns the arguments to pass to the controller.
  22. *
  23. * @param Request $request
  24. * @param callable $controller
  25. *
  26. * @return array An array of arguments to pass to the controller
  27. *
  28. * @throws \RuntimeException When no value could be provided for a required argument
  29. */
  30. public function getArguments(Request $request, $controller);
  31. }