Skip to content
Snippets Groups Projects
Commit 11f7f2a8 authored by catch's avatar catch
Browse files

Issue #2951163 by nkoporec, Parvateesam, joachim:...

Issue #2951163 by nkoporec, Parvateesam, joachim: CachePluginBase::cacheGet()/::cacheSet() doesn't document @params or @return
parent c00b97b2
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,9 @@ protected function cacheSetMaxAge($type) {
* Save data to the cache.
*
* A plugin should override this to provide specialized caching behavior.
*
* @param $type
* The cache type, either 'query', 'result'.
*/
public function cacheSet($type) {
switch ($type) {
......@@ -119,6 +122,12 @@ public function cacheSet($type) {
* Retrieve data from the cache.
*
* A plugin should override this to provide specialized caching behavior.
*
* @param $type
* The cache type, either 'query', 'result'.
*
* @return bool
* TRUE if data has been taken from the cache, otherwise FALSE.
*/
public function cacheGet($type) {
$cutoff = $this->cacheExpire($type);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment