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

14 lines
211 B
PHP

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