예제 #1
0
 /**
  * Remove an item from the cache.
  *
  * @param  string  $key
  * @return bool
  */
 public function forget($key)
 {
     return $this->store->forget($this->taggedItemKey($key));
 }
예제 #2
0
 /**
  * Remove an item from the cache.
  *
  * @param  string $key
  * @return bool
  */
 public function forget($key)
 {
     return $this->store->forget($key);
 }
예제 #3
0
파일: Section.php 프로젝트: Thomvh/turbine
 /**
  * Remove an item from the cache.
  *
  * @param  string  $key
  * @return void
  */
 public function forget($key)
 {
     $this->store->forget($this->sectionItemKey($key));
 }
예제 #4
0
파일: Cache.php 프로젝트: hscale/fizl-pages
 /**
  * @param $key
  */
 public function forget($key)
 {
     $this->cache->forget($this->key($key));
 }
예제 #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;
 }