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

Breadcrumb

  1. Drupal Core 11.1.x

ConfigurationResolverInterface.php

Namespace

OpenTelemetry\API\Instrumentation

File

vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\API\Instrumentation;

interface ConfigurationResolverInterface {
    public function has(string $name) : bool;
    public function getString(string $name) : ?string;
    public function getBoolean(string $name) : ?bool;
    public function getInt(string $name) : ?int;
    public function getList(string $name) : array;

}

Interfaces

Title Deprecated Summary
ConfigurationResolverInterface
RSS feed
Powered by Drupal