1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 02:09:23 +02:00
ampache/modules/React/Cache/CacheInterface.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);
}