18 lines
279 B
PHP
18 lines
279 B
PHP
<?php
|
|
|
|
namespace hg\apidoc\annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Enum;
|
|
|
|
|
|
final class Route extends Rule
|
|
{
|
|
/**
|
|
* 请求类型
|
|
* @Enum({"GET","POST","PUT","DELETE","PATCH","OPTIONS","HEAD"})
|
|
* @var string
|
|
*/
|
|
public $method = "GET";
|
|
|
|
}
|