📦 更新thinkphp(v5.1.37.1)

This commit is contained in:
Wisp X
2019-08-03 23:59:37 +08:00
parent 0330b3dc88
commit 4ccf046521
59 changed files with 1065 additions and 610 deletions
+1 -5
View File
@@ -267,10 +267,6 @@ class Redis extends Driver
protected function getTagItem($tag)
{
$tagName = $this->getTagKey($tag);
$keys = $this->handler->sMembers($tagName);
return array_map(function ($key) {
return $this->getCacheKey($key);
}, $keys);
return $this->handler->sMembers($tagName);
}
}