Files
kiri-core/Annotation/Model/Get.php
T
2021-01-19 17:48:28 +08:00

27 lines
224 B
PHP

<?php
namespace Annotation\Model;
use Attribute;
/**
* Class Get
* @package Annotation\Model
*/
#[Attribute(Attribute::TARGET_METHOD)] class Get
{
public function __construct(
public string $name
)
{
}
}