ArgumentResolverInterface.php 859 B

1234567891011121314151617181920212223242526272829303132
  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. * @return array An array of arguments to pass to the controller
  24. *
  25. * @throws \RuntimeException When no value could be provided for a required argument
  26. */
  27. public function getArguments(Request $request, callable $controller);
  28. }