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.
18 lines
358 B
18 lines
358 B
<?php |
|
|
|
namespace Plugins\ApiDoc\Attributes; |
|
|
|
/** |
|
* Class Api |
|
* |
|
* @author chenlong<vip_chenlong@163.com> |
|
* @date 2022/5/17 9:59 |
|
*/ |
|
#[\Attribute(\Attribute::TARGET_METHOD|\Attribute::TARGET_CLASS)] |
|
class Api |
|
{ |
|
/** |
|
* @param bool $isAuthenticate 是否需要认证 |
|
*/ |
|
public function __construct(public bool $isAuthenticate = false){} |
|
}
|
|
|