Files
kiri-core/Annotation/Model/Get.php
T
2021-01-20 15:46:26 +08:00

31 lines
305 B
PHP

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