mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 18:17:49 +08:00
15 lines
314 B
PHP
15 lines
314 B
PHP
<?php
|
|
|
|
namespace App\Annotation;
|
|
|
|
use Attribute;
|
|
use Hyperf\Di\Annotation\AbstractAnnotation;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
|
|
class ResponseFormat extends AbstractAnnotation
|
|
{
|
|
/**
|
|
* @param string $format
|
|
*/
|
|
public function __construct(public string $format) {}
|
|
} |