mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 02:09:23 +02:00
13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
namespace React\Cache;
|
|
|
|
interface CacheInterface
|
|
{
|
|
// @return React\Promise\PromiseInterface
|
|
public function get($key);
|
|
|
|
public function set($key, $value);
|
|
|
|
public function remove($key);
|
|
}
|