dev 코드와 일치

This commit is contained in:
2020-03-22 23:30:11 +09:00
parent 287dfded0e
commit 287dd241e7
18 changed files with 307 additions and 30 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class KVStorage{
static private $storageList = [];
static public function getStorage(\MeekroDB $db, string $storNamespace, string $tableName='storage'):self{
$obj_id = spl_object_id($db);
$obj_id = spl_object_hash($db);
$fullKey = $obj_id.','.$storNamespace.','.$tableName;
if(key_exists($fullKey, static::$storageList)){
return static::$storageList[$fullKey];