wpscanteam/OptParseValidator

View on GitHub
lib/opt_parse_validator/opts/url.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module OptParseValidator
  # Implementation of the URL Option
  class OptURL < OptURI
    # @return [ Array ] The allowed protocols
    def allowed_protocols
      %w[http https]
    end
  end
end