From 884fd92f1320d17daebb772297da03fb2cfa59b8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 1 Oct 2024 16:00:34 +0300 Subject: drop opentelemetry --- vendor/open-telemetry/sdk/Trace/SamplingResult.php | 71 ---------------------- 1 file changed, 71 deletions(-) delete mode 100644 vendor/open-telemetry/sdk/Trace/SamplingResult.php (limited to 'vendor/open-telemetry/sdk/Trace/SamplingResult.php') diff --git a/vendor/open-telemetry/sdk/Trace/SamplingResult.php b/vendor/open-telemetry/sdk/Trace/SamplingResult.php deleted file mode 100644 index 5701b7bc6..000000000 --- a/vendor/open-telemetry/sdk/Trace/SamplingResult.php +++ /dev/null @@ -1,71 +0,0 @@ -decision = $decision; - $this->attributes = $attributes; - $this->traceState = $traceState; - } - - /** - * Return sampling decision whether span should be recorded or not. - */ - public function getDecision(): int - { - return $this->decision; - } - - /** - * Return attributes which will be attached to the span. - */ - public function getAttributes(): iterable - { - return $this->attributes; - } - - /** - * Return a collection of links that will be associated with the Span to be created. - */ - public function getTraceState(): ?API\TraceStateInterface - { - return $this->traceState; - } -} -- cgit v1.2.3-54-g00ecf