mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
update to 3.0.0-alpha2 (build 610): refactor driver
This commit is contained in:
31
src/ZM/Annotation/AnnotationMap.php
Normal file
31
src/ZM/Annotation/AnnotationMap.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace ZM\Annotation;
|
||||
|
||||
/**
|
||||
* 注解全局存取位置
|
||||
*/
|
||||
class AnnotationMap
|
||||
{
|
||||
/**
|
||||
* 存取注解对象的列表
|
||||
*
|
||||
* @var array<string, array<AnnotationBase>>
|
||||
* @internal
|
||||
*/
|
||||
public static $_list = [];
|
||||
|
||||
/**
|
||||
* @var array<string, array<string, array<AnnotationBase>>>
|
||||
* @internal
|
||||
*/
|
||||
public static $_map = [];
|
||||
|
||||
/**
|
||||
* @var array
|
||||
* @internal
|
||||
*/
|
||||
public static $_middleware_map = [];
|
||||
}
|
||||
Reference in New Issue
Block a user