zhamao-framework/src/ZM/DBCache/DHUerCache.php
2020-03-02 16:14:20 +08:00

17 lines
201 B
PHP

<?php
namespace ZM\DBCache;
class DHUerCache implements DBCache
{
/**
* @var array
*/
private static $data;
public static function reset() {
self::$data = [];
}
}