class RuboCop::Cop::RSpec::HookArgument

def check_implicit(method_send)

def check_implicit(method_send)
  style_detected(:implicit)
  return if implicit_style?
  add_offense(
    method_send,
    location: :selector,
    message: format(EXPLICIT_MSG, scope: style)
  )
end