TOP-framework/framework/library/cache/ifs/CacheIfs.php

14 lines
203 B
PHP

<?php
namespace top\library\cache\ifs;
interface CacheIfs
{
public function set($key, $value, $timeout = 0);
public function get($key, $callable = null);
public function remove($key);
}