mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
13 lines
188 B
PHP
13 lines
188 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Store\KV;
|
|
|
|
use Psr\SimpleCache\CacheInterface;
|
|
|
|
interface KVInterface
|
|
{
|
|
public static function open(string $name = ''): CacheInterface;
|
|
}
|