class ActiveSupport::Callbacks::CallbackSequence
def initialize(nested = nil, call_template = nil, user_conditions = nil)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (?ActiveSupport::Callbacks::CallbackSequence? nested, ?ActiveSupport::Callbacks::CallTemplate::InstanceExec2? call_template, ?Array[]? user_conditions) -> void
This signature was generated using 6 samples from 1 application.
https://github.com/rails/rails/issues/18011
chaining them with nested lambda calls, see:
Execute before and after filters in a sequence instead of
def initialize(nested = nil, call_template = nil, user_conditions = nil) @nested = nested @call_template = call_template @user_conditions = user_conditions @before = [] @after = [] end