Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
AbstractDAOCache.php
Go to the documentation of this file.
1<?php
2
4
13abstract class AbstractDAOCache {
14
15 abstract public function store($class, $key, $object);
16
17 abstract public function fetch($class, $key);
18
19 abstract public function delete($class, $key);
20
21 public function optimize() {
22 }
23}
24
Ubiquity\cache\dao$AbstractDAOCache This class is part of Ubiquity.
store($class, $key, $object)