swoole-framwork/core/annotations/RequestMapping.php

12 lines
204 B
PHP
Raw Normal View History

2024-05-20 11:51:07 +08:00
<?php
namespace Core\annotations;
use Doctrine\Common\Annotations\Annotation\Target;
/**
* @Annotation
* @Target({"METHOD"})
*/
class RequestMapping
{
public $value = '';
public $method = [];
}