Application\Cache\Manager::delete PHP Method

delete() public method

public delete ( $key )
    public function delete($key)
    {
        if (is_array($key)) {
            $key = $this->key($key);
        }
        $this->cache->delete($key);
    }