summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php
blob: 79bd9404723ef8a57dbf32662612432f69f2dcbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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;
}