From 884fd92f1320d17daebb772297da03fb2cfa59b8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 1 Oct 2024 16:00:34 +0300 Subject: drop opentelemetry --- .../api/Instrumentation/ContextKeys.php | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 vendor/open-telemetry/api/Instrumentation/ContextKeys.php (limited to 'vendor/open-telemetry/api/Instrumentation/ContextKeys.php') diff --git a/vendor/open-telemetry/api/Instrumentation/ContextKeys.php b/vendor/open-telemetry/api/Instrumentation/ContextKeys.php deleted file mode 100644 index ea1a66416..000000000 --- a/vendor/open-telemetry/api/Instrumentation/ContextKeys.php +++ /dev/null @@ -1,58 +0,0 @@ - - */ - public static function tracerProvider(): ContextKeyInterface - { - static $instance; - - return $instance ??= Context::createKey(TracerProviderInterface::class); - } - - /** - * @return ContextKeyInterface - */ - public static function meterProvider(): ContextKeyInterface - { - static $instance; - - return $instance ??= Context::createKey(MeterProviderInterface::class); - } - - /** - * @return ContextKeyInterface - */ - public static function propagator(): ContextKeyInterface - { - static $instance; - - return $instance ??= Context::createKey(TextMapPropagatorInterface::class); - } - - /** - * @return ContextKeyInterface - */ - public static function loggerProvider(): ContextKeyInterface - { - static $instance; - - return $instance ??= Context::createKey(LoggerProviderInterface::class); - } -} -- cgit v1.2.3-54-g00ecf