for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Router\Tests\Support;
use Nyholm\Psr7\Response;
use Psr\Http\Message\ResponseInterface;
class TestController
{
public function index(): ResponseInterface
return new Response();
}