Files
hyperf_rbac_framework_serve…/app/Annotation/ResponseFormat.php
2025-09-14 22:33:32 +08:00

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