15 lines
209 B
PHP
15 lines
209 B
PHP
<?php
|
|
|
|
namespace hg\apidoc\annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* 作者
|
|
* @package hg\apidoc\annotation
|
|
* @Annotation
|
|
* @Target({"METHOD"})
|
|
*/
|
|
class Author extends Annotation
|
|
{}
|