Storm\Utilities\Cache\MemoryCache::Delete PHP Метод

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

public Delete ( $Key )
    public function Delete($Key)
    {
        if (!$this->Contains($Key)) {
            return false;
        } else {
            unset($this->Cache[$Key]);
            return true;
        }
    }