Beispiel #1
0
 /**
  * Extend expiry time for given key
  *
  * @param string $key  cache identifier
  * @param int    $time time to add
  *
  * @return mixed
  */
 public function extendCacheTime($key = '', $time = 3600)
 {
     return $this->_cache->touch($key, $time);
 }