예제 #1
0
 /**
  * Decrement the value of an item in the cache.
  *
  * @param string $key
  * @param mixed  $value
  * 
  * @return int
  */
 public function decrement($key, $value = 1)
 {
     return $this->cache->decrement($this->prefix . $key, $value);
 }