コード例 #1
0
ファイル: TaggedCache.php プロジェクト: mawaha/tracker
 /**
  * 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;
 }