class Qa::LDF::EmptySearchService
A search service that always returns no results.
@example
EmptySearchService.new.search('any query') # => {}
Public Instance Methods
search(_query)
click to toggle source
@see Qa::Authority::Base#search
# File lib/qa/ldf/empty_search_service.rb, line 13 def search(_query) [] end