Files
zhamao-framework/src/ZM/Store/KV/KVInterface.php

13 lines
188 B
PHP
Raw Normal View History

2022-12-31 15:27:09 +08:00
<?php
2022-12-31 19:04:57 +08:00
declare(strict_types=1);
2022-12-31 15:27:09 +08:00
namespace ZM\Store\KV;
2022-12-31 19:02:41 +08:00
use Psr\SimpleCache\CacheInterface;
2022-12-31 15:27:09 +08:00
interface KVInterface
{
2022-12-31 19:02:41 +08:00
public static function open(string $name = ''): CacheInterface;
2022-12-31 15:27:09 +08:00
}