28 lines
338 B
PHP
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;
|
|
}
|