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

doDelete() protected method

protected doDelete ( $id )
    protected function doDelete($id)
    {
        // apc_delete returns false if the id does not exist
        return apc_delete($id) || !apc_exists($id);
    }