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