mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-07 16:55:35 +08:00
18 lines
259 B
PHP
18 lines
259 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Module;
|
||
|
|
|
||
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
|
use ZM\Annotation\AnnotationBase;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class Closed
|
||
|
|
* @Annotation
|
||
|
|
* @Target("CLASS")
|
||
|
|
* @package ZM\Annotation\Module
|
||
|
|
*/
|
||
|
|
class Closed extends AnnotationBase
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|