fix: KVStorage에서 Map으로 안 바뀐 코드 수정

This commit is contained in:
2022-05-09 02:30:11 +09:00
parent 43997b9117
commit 397aa76e15
+1 -1
View File
@@ -97,7 +97,7 @@ class KVStorage
public function resetValues(): self
{
if ($this->cacheData !== null) {
$this->cacheData = [];
$this->cacheData = new Map();
}
return $this->resetDBNamespace();
}