class RuboCop::Cop::Layout::SpaceAroundBlockParameters

def check_after_closing_pipe(arguments)

def check_after_closing_pipe(arguments)
  _opening_pipe, closing_pipe = pipes(arguments)
  block = arguments.parent
  check_space(closing_pipe.end_pos, block.body.source_range.begin_pos,
              closing_pipe, 'after closing `|`')
end