25 lines
200 B
PHP
25 lines
200 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace Annotation\Model;
|
||
|
|
|
||
|
|
|
||
|
|
use Attribute;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Get
|
||
|
|
* @package Annotation\Model
|
||
|
|
*/
|
||
|
|
#[Attribute(Attribute::TARGET_METHOD)] class Get
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|