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

28 lines
338 B
PHP

<?php
namespace hg\apidoc\annotation;
/**
* 请求参数
* @package hg\apidoc\annotation
* @Annotation
* @Target({"METHOD","ANNOTATION"})
*/
final class Param extends ParamBase
{
/**
* 必须
* @var bool
*/
public $require = false;
/**
* 引入
* @var string
*/
public $ref;
}