Reformat cache handler code

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9814 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-11-15 09:25:34 +00:00
parent 9b4f219a0c
commit 518a8a2f59

View file

@ -1,5 +1,5 @@
<?php
/**
/**
* @class CacheHandler
* @author NHN (developer@xpressengine.com)
* @brief Cache Handler
@ -7,8 +7,7 @@
*
**/
class CacheHandler extends Handler {
class CacheHandler extends Handler {
var $handler = null;
var $keyGroupVersions = null;
@ -104,9 +103,9 @@
$this->keyGroupVersions[$keyGroupName]++;
$this->handler->put('key_group_versions', $this->keyGroupVersions, 0);
}
}
}
class CacheBase{
class CacheBase{
function get($key, $modified_time = 0){
return false;
}
@ -126,5 +125,6 @@
function truncate(){
return false;
}
}
?>
}
/* End of file : CacheHandler.class.php */