chore: complete update

This commit is contained in:
2025-07-17 16:24:20 +02:00
parent 899227b0a4
commit 64a7051137
1300 changed files with 85570 additions and 2756 deletions

View File

@@ -4,15 +4,16 @@ declare(strict_types=1);
namespace App\Framework\Attributes;
use App\Framework\Http\Method;
use Attribute;
#[Attribute(\Attribute::TARGET_METHOD, \Attribute::IS_REPEATABLE)]
class Route
#[Attribute(Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)]
final readonly class Route
{
public function __construct(
public string $path,
public string $method = 'GET',
public Method $method = Method::GET,
public ?string $name = null,
) {
}
}