HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //usr/lib/ruby/site_ruby/1.8/puppet/pops/binder/bindings_validator_factory.rb
# Configures validation suitable for the bindings model
# @api public
#
class Puppet::Pops::Binder::BindingsValidatorFactory < Puppet::Pops::Validation::Factory
  Issues = Puppet::Pops::Binder::BinderIssues

  # Produces the checker to use
  def checker diagnostic_producer
    Puppet::Pops::Binder::BindingsChecker.new(diagnostic_producer)
  end

  # Produces the label provider to use
  def label_provider
    Puppet::Pops::Binder::BindingsLabelProvider.new()
  end

  # Produces the severity producer to use
  def severity_producer
    p = super

    # Configure each issue that should **not** be an error
    #
    p[Issues::MISSING_BINDINGS] = :warning
    p[Issues::MISSING_LAYERS]   = :warning

    p
  end
end