ministryofjustice/atet

View on GitHub
app/models/null_object.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NullObject < BasicObject
  def method_missing(*)
    nil
  end

  def respond_to_missing?(_method_name, _include_private = false)
    true
  end

  def respond_to?(*)
    true
  end
end