Minimal Laravel 10 application

This commit is contained in:
2024-02-15 12:04:21 +01:00
parent 1387db39cf
commit 49a9ac300b
44 changed files with 114 additions and 801 deletions

View File

@ -1,13 +1,15 @@
<?php
declare(strict_types=1);
namespace App\Http;
class Redirection
final readonly class Redirection
{
public function __construct(
public readonly string $url,
public readonly string $target,
public readonly string $name
public string $url,
public string $target,
public string $name
) {
}