You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
467 B
23 lines
467 B
<?php |
|
|
|
namespace Plugins\ApiDoc\Admin\Attributes; |
|
|
|
/** |
|
* Api版面描述 |
|
* |
|
* @author chenlong<vip_chenlong@163.com> |
|
* @date 2022/6/10 11:48 |
|
*/ |
|
#[\Attribute(\Attribute::TARGET_METHOD|\Attribute::IS_REPEATABLE)] |
|
class ApiVersion |
|
{ |
|
/** |
|
* @param float $version 版本 |
|
* @param string $describe 版本描述 |
|
*/ |
|
public function __construct( |
|
public float $version, |
|
public string $describe = '') |
|
{ |
|
} |
|
}
|
|
|