lib/qonfig/commands/base.rb in qonfig-0.12.0 vs lib/qonfig/commands/base.rb in qonfig-0.13.0

- old
+ new

@@ -1,12 +1,13 @@ # frozen_string_literal: true # @api private # @since 0.1.0 class Qonfig::Commands::Base + # @param data_set [Qonfig::DataSet] # @param settings [Qonfig::Settings] # @return [void] # # @api private # @since 0.1.0 - def call(settings); end + def call(data_set, settings); end end