Module: AggregateRoot::Constructor
- Defined in:
- lib/aggregate_root.rb
Instance Method Summary collapse
Instance Method Details
#new ⇒ Object
34 35 36 37 38 39 |
# File 'lib/aggregate_root.rb', line 34 def new(*, **) super.tap do |instance| instance.instance_variable_set(:@version, -1) instance.instance_variable_set(:@unpublished_events, []) end end |