Isswp101\Persimmon\Cache\RuntimeCache::forget PHP Метод

forget() публичный Метод

Remove an item from the cache by key.
public forget ( mixed $key )
$key mixed
    public function forget($key)
    {
        unset($this->cache[$key]);
        return $this;
    }