Highway to PSR2
[openemr.git] / portal / patient / fwk / libs / verysimple / Phreeze / CacheNoCache.php
blob40834234aa296324f95d14e4df29f28c0a154a2b
1 <?php
2 /** @package verysimple::Phreeze */
4 /**
5 * import supporting libraries
6 */
7 require_once("ICache.php");
9 /**
10 * CacheRam is an implementation of a Cache that doesn't actually cache at all
12 * @package verysimple::Phreeze
13 * @author VerySimple Inc.
14 * @copyright 1997-2008 VerySimple, Inc.
15 * @license http://www.gnu.org/licenses/lgpl.html LGPL
16 * @version 2.0
18 class CacheNoCache implements ICache
20 private $ram = array ();
21 public function Get($key, $flags = null)
23 return null;
25 public function Set($key, $val, $flags = null, $timeout = 0)
28 public function Delete($key)