swoole-framwork/core/annotations/RequestMapping.php
2024-05-21 14:33:56 +08:00

15 lines
207 B
PHP

<?php
namespace Core\annotations;
use Doctrine\Common\Annotations\Annotation\Target;
/**
* @Annotation
* @Target({"METHOD"})
*/
class RequestMapping
{
public $value = '';
public $method = [];
}