class Pundit::CacheStore::NullStore

@api private
@see Pundit::Context#initialize
Use ‘NullStore.instance` to get the singleton instance, it is thread-safe.
A cache store that does not cache anything.

def fetch(*, **)

Returns:
  • (any) - whatever the block returns.

Other tags:
    Yield: -
def fetch(*, **)
  yield
end