Files
tougao/vendor/hg/apidoc/src/annotation/Route.php
wangjinlei c1885928ff 20220406
2022-04-06 18:02:49 +08:00

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";
}