mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
33 lines
975 B
PHP
33 lines
975 B
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | EasyAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | PHP交流群: 763822524
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 https://mit-license.org
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zhongshaofa/EasyAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\service\annotation;
|
||
|
||
use base\admin\service\annotation\ControllerAnnotationBase;
|
||
use Doctrine\Common\Annotations\Annotation\Attributes;
|
||
use Doctrine\Common\Annotations\Annotation\Target;
|
||
|
||
/**
|
||
* Class ControllerAnnotation.
|
||
*
|
||
* @Annotation
|
||
* @Target("CLASS")
|
||
* @Attributes({
|
||
* @Attribute("title", type="string"),
|
||
* })
|
||
*
|
||
* @since 2.0
|
||
*/
|
||
final class ControllerAnnotation extends ControllerAnnotationBase
|
||
{
|
||
}
|