platform notify

This commit is contained in:
cano
2024-03-27 00:11:26 +08:00
parent 01e93acdd8
commit 4b47fe7250
21 changed files with 462 additions and 18 deletions

View File

@ -39,6 +39,10 @@ abstract class BaseCache
{
return $this->getCacheData($key);
}
function del($key): bool
{
return $this->delCacheData($key);
}
function getCacheData($primary_key = null): array|string|null
{