Files
website/app/Http/Redirection.php
2022-09-05 19:54:06 +02:00

16 lines
335 B
PHP

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