# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class CurrentUser < Arel::Nodes::Node end end module Visitors class ToSql def visit_Arel_Nodes_CurrentUser(_o, collector) collector << 'current_user' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName