Exemple #1
0
 /**
  * Increment the value of an item in the cache.
  *
  * @param  string  $key
  * @param  mixed   $value
  * @return void
  */
 public function increment($key, $value = 1)
 {
     $this->store->increment($this->taggedItemKey($key), $value);
 }