digidentity/libsaml

View on GitHub
lib/saml/null_provider.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Saml
  class NullProvider
    include Provider

    def entity_id
      nil
    end
  end
end