nyroFwk  0.2
cache/abstract.class.php
Go to the documentation of this file.
1 <?php
10 abstract class cache_abstract extends object {
11 
17  public function setCfg(array $cfg) {
18  $this->cfg->setA($cfg);
19  }
20 
26  public function isEnabled() {
27  return $this->cfg->enabled;
28  }
29 
50  abstract public function get(&$value, array $prm);
51 
58  abstract public function save();
59 
78  abstract public function start(array $prm);
79 
86  abstract public function end();
87 
101  abstract public function delete(array $prm = array());
102 
115  abstract public function exists(array $prm);
116 
117 }
exists(array $prm)
start(array $prm)
Generated on Sun Oct 15 2017 22:25:20 for nyroFwk by doxygen 1.8.13