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