* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace phpOMS\DataStorage\Cache; /** * Null cache class. * * @category Framework * @package phpOMS\DataStorage\Cache * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ class NullCache implements CacheInterface { /** * {@inheritdoc} */ public function set($key, $value, CacheStatus $type = null, \int $expire = 2592000) { // TODO: Implement set() method. } /** * {@inheritdoc} */ public function add($key, $value, CacheStatus $type = null, \int $expire = 2592000) { // TODO: Implement add() method. } /** * {@inheritdoc} */ public function get($key, CacheStatus $type = null) { // TODO: Implement get() method. } /** * {@inheritdoc} */ public function delete($key, CacheStatus $type = null) { // TODO: Implement delete() method. } /** * {@inheritdoc} */ public function flush(CacheStatus $type = null) { // TODO: Implement flush() method. } /** * {@inheritdoc} */ public function replace($key, $value, CacheType $type = null, \int $expire = -1) { // TODO: Implement replace() method. } /** * {@inheritdoc} */ public function stats() : array { // TODO: Implement stats() method. } /** * {@inheritdoc} */ public function getThreshold() : \int { // TODO: Implement getThreshold() method. } }