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

28 lines
275 B
PHP

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