Files
website/app/Http/Redirection.php
2024-11-14 22:15:05 +01:00

20 lines
355 B
PHP

<?php
declare(strict_types=1);
namespace App\Http;
final readonly class Redirection
{
public function __construct(
public string $url,
public string $target,
public string $name
) {}
public static function named($name, $url, $target): Redirection
{
return new Redirection($url, $target, $name);
}
}