Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

RatioParser.php

Namespace

OpenTelemetry\SDK\Common\Configuration\Parser

File

vendor/open-telemetry/sdk/Common/Configuration/Parser/RatioParser.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Configuration\Parser;

use InvalidArgumentException;
use RangeException;
class RatioParser {
    private const MAX_VALUE = 1;
    private const MIN_VALUE = 0;
    public static function parse($value) : float {
        if (filter_var($value, FILTER_VALIDATE_FLOAT) === false) {
            throw new InvalidArgumentException(sprintf('Value "%s" contains non-numeric value', $value));
        }
        $result = (double) $value;
        if ($result > self::MAX_VALUE || $result < self::MIN_VALUE) {
            throw new RangeException(sprintf('Value must not be lower than %s or higher than %s. Given: %s', self::MIN_VALUE, self::MAX_VALUE, $value));
        }
        return $result;
    }

}

Classes

Title Deprecated Summary
RatioParser

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal