for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gacela\Router;
final class Redirect
{
public function __construct(
public string $uri,
public string $destination,
public string $method = Request::METHOD_GET,
) {
}