diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2023-10-20 17:12:29 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2023-10-20 21:13:39 +0300 |
| commit | cdd7ad020e165fe680703b6d3319b908b682fb7a (patch) | |
| tree | b51eb09b7b4587e8fbc5624ac8d88d28cfcd0b04 /vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php | |
| parent | 45a9ff0c88cbd33892ff16ab837e9059937d656e (diff) | |
jaeger-client -> opentelemetry
Diffstat (limited to 'vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php')
| -rw-r--r-- | vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php b/vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php new file mode 100644 index 000000000..79bd94047 --- /dev/null +++ b/vendor/open-telemetry/api/Instrumentation/ConfigurationResolverInterface.php @@ -0,0 +1,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; +} |