15 lines
207 B
PHP
15 lines
207 B
PHP
<?php
|
|
|
|
namespace hg\apidoc\annotation;
|
|
|
|
use Doctrine\Common\Annotations\Annotation;
|
|
|
|
/**
|
|
* 分组
|
|
* @package hg\apidoc\annotation
|
|
* @Annotation
|
|
* @Target({"CLASS"})
|
|
*/
|
|
class Group extends Annotation
|
|
{}
|