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

Breadcrumb

  1. Drupal Core 11.1.x

BooleanParser.php

Namespace

OpenTelemetry\SDK\Common\Configuration\Parser

File

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

View source
<?php

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

use InvalidArgumentException;
class BooleanParser {
    private const TRUE_VALUE = 'true';
    private const FALSE_VALUE = 'false';
    
    /**
     * @param string|bool $value
     */
    public static function parse($value) : bool {
        if (is_bool($value)) {
            return $value;
        }
        if (strtolower($value) === self::TRUE_VALUE) {
            return true;
        }
        if (strtolower($value) === self::FALSE_VALUE) {
            return false;
        }
        throw new InvalidArgumentException(sprintf('Value "%s" is a non-boolean value', $value));
    }

}

Classes

Title Deprecated Summary
BooleanParser

API Navigation

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