class RuboCop::Cop::Layout::SpaceInsideBlockBraces
def style_for_empty_braces
def style_for_empty_braces case cop_config['EnforcedStyleForEmptyBraces'] when 'space' then :space when 'no_space' then :no_space else raise 'Unknown EnforcedStyleForEmptyBraces selected!' end end