Skip to content
Snippets Groups Projects
Commit 375f5f2d authored by catch's avatar catch
Browse files

Issue #3259028 by longwave: [Symfony 6] Add return types to...

Issue #3259028 by longwave: [Symfony 6] Add return types to Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface implementations
parent 9597a77d
No related branches found
No related tags found
No related merge requests found
......@@ -33,14 +33,14 @@ public function __construct(HttpMessageFactoryInterface $http_message_factory) {
/**
* {@inheritdoc}
*/
public function supports(Request $request, ArgumentMetadata $argument) {
public function supports(Request $request, ArgumentMetadata $argument): bool {
return $argument->getType() == ServerRequestInterface::class;
}
/**
* {@inheritdoc}
*/
public function resolve(Request $request, ArgumentMetadata $argument) {
public function resolve(Request $request, ArgumentMetadata $argument): iterable {
yield $this->httpMessageFactory->createRequest($request);
}
......
......@@ -16,14 +16,14 @@ final class RouteMatchValueResolver implements ArgumentValueResolverInterface {
/**
* {@inheritdoc}
*/
public function supports(Request $request, ArgumentMetadata $argument) {
public function supports(Request $request, ArgumentMetadata $argument): bool {
return $argument->getType() == RouteMatchInterface::class || is_subclass_of($argument->getType(), RouteMatchInterface::class);
}
/**
* {@inheritdoc}
*/
public function resolve(Request $request, ArgumentMetadata $argument) {
public function resolve(Request $request, ArgumentMetadata $argument): iterable {
yield RouteMatch::createFromRequest($request);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment