Ejemplo n.º 1
0
 /**
  * Remove an item from the cache.
  *
  * @param  string  $key
  * @return bool
  */
 public function forget($key)
 {
     return $this->store->forget($this->taggedItemKey($key));
 }
Ejemplo n.º 2
0
 /**
  * Remove an item from the cache.
  *
  * @param  string $key
  * @return bool
  */
 public function forget($key)
 {
     return $this->store->forget($key);
 }
Ejemplo n.º 3
0
 /**
  * Remove an item from the cache.
  *
  * @param  string  $key
  * @return void
  */
 public function forget($key)
 {
     $this->store->forget($this->sectionItemKey($key));
 }
Ejemplo n.º 4
0
 /**
  * @param $key
  */
 public function forget($key)
 {
     $this->cache->forget($this->key($key));
 }
Ejemplo n.º 5
0
 /**
  * Remove an item from the cache.
  *
  * @param  string $key
  * @return bool
  */
 public function forget($key)
 {
     $success = $this->store->forget($key);
     $this->fireCacheEvent('delete', [$key]);
     return $success;
 }