for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Middleware\Dispatcher;
use Psr\Http\Message\ServerRequestInterface;
final class SimpleParametersResolver implements ParametersResolverInterface
{
/**
* {@inheritDoc}
*/
public function resolve(array $parameters, ServerRequestInterface $request): array
return [];
}