15 lines
216 B
PHP
15 lines
216 B
PHP
<?php
|
|
|
|
namespace hg\apidoc\annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* 标题
|
|
* @package hg\apidoc\annotation
|
|
* @Annotation
|
|
* @Target({"METHOD","CLASS"})
|
|
*/
|
|
class Title extends Annotation
|
|
{}
|