/var/www/flurhymez/vendor/symfony/http-kernel/Controller
NameSizeModeActions
ArgumentResolver/-0755rm
ArgumentResolver.php37490644editdlrm
ArgumentResolverInterface.php8110644editdlrm
ArgumentValueResolverInterface.php9520644editdlrm
ContainerControllerResolver.php26490644editdlrm
ControllerReference.php13060644editdlrm
ControllerResolver.php74330644editdlrm
ControllerResolverInterface.php13560644editdlrm
ErrorController.php19900644editdlrm
TraceableArgumentResolver.php10390644editdlrm
TraceableControllerResolver.php10110644editdlrm
Edit: /var/www/flurhymez/vendor/symfony/http-kernel/Controller/ArgumentValueResolverInterface.php (952B)
* * 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; use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata; /** * Responsible for resolving the value of an argument based on its metadata. * * @author Iltar van der Berg */ interface ArgumentValueResolverInterface { /** * Whether this resolver can resolve the value for the given ArgumentMetadata. * * @return bool */ public function supports(Request $request, ArgumentMetadata $argument); /** * Returns the possible value(s). * * @return iterable */ public function resolve(Request $request, ArgumentMetadata $argument); }