mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 22:47:50 +08:00
14 lines
242 B
PHP
14 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Annotation;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
|
|
class ResponseFormat
|
|
{
|
|
/**
|
|
* @param string $format
|
|
*/
|
|
public function __construct(public string $format) {}
|
|
} |