From 9f7ebceeb946b939dbb601db18513a6c9a11bd43 Mon Sep 17 00:00:00 2001 From: sunxyw Date: Tue, 5 Apr 2022 00:24:37 +0800 Subject: [PATCH] add phpdoc to ZMBuf --- src/ZM/Store/ZMBuf.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/ZM/Store/ZMBuf.php b/src/ZM/Store/ZMBuf.php index 0f2f7e59..a19c24ec 100644 --- a/src/ZM/Store/ZMBuf.php +++ b/src/ZM/Store/ZMBuf.php @@ -10,13 +10,39 @@ declare(strict_types=1); namespace ZM\Store; +use ZM\Context\ContextInterface; + class ZMBuf { + /** + * 注册的事件 + * + * @deprecated 不再使用 + * + * @var array + */ public static $events = []; + /** + * 全局单例容器 + * + * @var array + */ public static $instance = []; + /** + * 上下文容器 + * + * @var array + */ public static $context_class = []; + /** + * 终端输入流? + * + * 目前等用于 STDIN + * + * @var resource + */ public static $terminal; }