From 397aa76e1526c4a8b8a4e537b9473b22b6c43e52 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Mon, 9 May 2022 02:30:11 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20KVStorage=EC=97=90=EC=84=9C=20Map?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=95=88=20=EB=B0=94=EB=80=90=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/sammo/KVStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sammo/KVStorage.php b/src/sammo/KVStorage.php index b8e9cc75..9539c773 100644 --- a/src/sammo/KVStorage.php +++ b/src/sammo/KVStorage.php @@ -97,7 +97,7 @@ class KVStorage public function resetValues(): self { if ($this->cacheData !== null) { - $this->cacheData = []; + $this->cacheData = new Map(); } return $this->resetDBNamespace(); }