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/Event.php | 47 ------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 vendor/open-telemetry/sdk/Trace/Event.php (limited to 'vendor/open-telemetry/sdk/Trace/Event.php') diff --git a/vendor/open-telemetry/sdk/Trace/Event.php b/vendor/open-telemetry/sdk/Trace/Event.php deleted file mode 100644 index 28cb39bb1..000000000 --- a/vendor/open-telemetry/sdk/Trace/Event.php +++ /dev/null @@ -1,47 +0,0 @@ -name = $name; - $this->timestamp = $timestamp; - $this->attributes = $attributes; - } - - public function getAttributes(): AttributesInterface - { - return $this->attributes; - } - - public function getName(): string - { - return $this->name; - } - - public function getEpochNanos(): int - { - return $this->timestamp; - } - - public function getTotalAttributeCount(): int - { - return count($this->attributes); - } - - public function getDroppedAttributesCount(): int - { - return $this->attributes->getDroppedAttributesCount(); - } -} -- cgit v1.2.3-54-g00ecf