module ActiveRecord::Callbacks

def increment!(attribute, by = 1, touch: nil) # :nodoc:

:nodoc:
def increment!(attribute, by = 1, touch: nil) # :nodoc:
  touch ? _run_touch_callbacks { super } : super
end