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