16 lines
317 B
PHP
16 lines
317 B
PHP
<?php
|
|
|
|
namespace KTXF\Routing\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
|
|
class AnonymousRoute
|
|
{
|
|
public function __construct(
|
|
public readonly string $path,
|
|
public readonly string $name,
|
|
public readonly array $methods = ['GET'],
|
|
) {}
|
|
}
|