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