mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 23:12:49 +08:00
16 lines
245 B
PHP
16 lines
245 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Fendx\Web\Annotation;
|
||
|
|
|
||
|
|
#[\Attribute(\Attribute::TARGET_METHOD)]
|
||
|
|
final class PostRoute
|
||
|
|
{
|
||
|
|
public string $path;
|
||
|
|
|
||
|
|
public function __construct(string $path)
|
||
|
|
{
|
||
|
|
$this->path = $path;
|
||
|
|
}
|
||
|
|
}
|