Files
hyperf_rbac_framework_serve…/app/Annotation/ResponseFormat.php
2025-09-12 15:23:08 +08:00

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) {}
}