Source for file Cleanup.php
Documentation is available at Cleanup.php
* Definition cache decorator class that cleans up the cache
* whenever there is a cache miss.
public $name =
'Cleanup';
public function add($def, $config) {
$status =
parent::add($def, $config);
if (!$status) parent::cleanup($config);
public function set($def, $config) {
$status =
parent::set($def, $config);
if (!$status) parent::cleanup($config);
public function replace($def, $config) {
$status =
parent::replace($def, $config);
if (!$status) parent::cleanup($config);
public function get($config) {
$ret =
parent::get($config);
if (!$ret) parent::cleanup($config);
Documentation generated on Thu, 19 Jun 2008 18:48:55 -0400 by phpDocumentor 1.4.2