server/app/Annotation/User.php

20 lines
299 B
PHP

<?php
namespace App\Annotation;
use Attribute;
use Hyperf\Di\Annotation\AbstractAnnotation;
/**
* 用户端
*/
#[Attribute(Attribute::TARGET_METHOD)]
class User extends AbstractAnnotation
{
/**
* construct.
*/
public function __construct(public bool $needLogin=true)
{}
}