修改缓存tag

This commit is contained in:
lewis 2025-08-21 09:57:52 +08:00
parent 9ebddaf3d5
commit 1e7a111389

View File

@ -15,7 +15,7 @@ class BaseCache
protected $cache;
public function __construct(){
$this->tagName = get_class($this);
$this->tagName = str_replace('\\', '_', get_class($this));
}