Doctrine\Common\Cache\FileCache::doDelete PHP Method

doDelete() protected method

protected doDelete ( $id )
    protected function doDelete($id)
    {
        $filename = $this->getFilename($id);
        return @unlink($filename) || !file_exists($filename);
    }