20220406
This commit is contained in:
27
vendor/hg/apidoc/src/annotation/Param.php
vendored
Normal file
27
vendor/hg/apidoc/src/annotation/Param.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user