Class: Honeybadger::Backend::Null

Inherits:
Base
  • Object
show all
Defined in:
lib/honeybadger/backend/null.rb

Direct Known Subclasses

Debug, Test

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Null

Returns a new instance of Null.



6
7
8
# File 'lib/honeybadger/backend/null.rb', line 6

def initialize(*args)
  super
end

Instance Method Details

#notify(feature, payload) ⇒ Object



10
11
12
# File 'lib/honeybadger/backend/null.rb', line 10

def notify(feature, payload)
  Response.new(201, '{}')
end