forget() public method

Remove an item from the cache.
public forget ( string $key )
$key string
Beispiel #1
0
 /**
  * Remove an item from the cache.
  *
  * @param  string $key
  *
  * @return void
  */
 public function forget($key)
 {
     return $this->adapter->forget($key);
 }