class FactoryBot::CallbacksObserver

def update(name, result_instance)

Experimental RBS support (using type sampling data from the type_fusion project).

def update: (Symbol name, (Types::Sample | Client) result_instance) -> untyped

This signature was generated using 11 samples from 2 applications.

def update(name, result_instance)
  callbacks_by_name(name).each do |callback|
    callback.run(result_instance, @evaluator)
  end
end