class RuboCop::Cop::Style::SpaceAroundBlockParameters

def check_inside_pipes(args, opening_pipe, closing_pipe)

def check_inside_pipes(args, opening_pipe, closing_pipe)
  if style == :no_space
    check_no_space_style_inside_pipes(args, opening_pipe, closing_pipe)
  elsif style == :space
    check_space_style_inside_pipes(args, opening_pipe, closing_pipe)
  end
end