mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-19 05:34:53 +08:00
23 lines
394 B
PHP
23 lines
394 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Http;
|
||
|
|
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Required;
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
use ZM\Annotation\AnnotationBase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Controller
|
||
|
|
* @Annotation
|
||
|
|
* @Target("CLASS")
|
||
|
|
* @package ZM\Annotation\Http
|
||
|
|
*/
|
||
|
|
class Controller extends AnnotationBase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @var string
|
||
|
|
* @Required()
|
||
|
|
*/
|
||
|
|
public $prefix = '';
|
||
|
|
}
|