diff options
Diffstat (limited to 'vendor/open-telemetry/sdk/Trace/EventInterface.php')
| -rw-r--r-- | vendor/open-telemetry/sdk/Trace/EventInterface.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/open-telemetry/sdk/Trace/EventInterface.php b/vendor/open-telemetry/sdk/Trace/EventInterface.php deleted file mode 100644 index 8b5ee2af6..000000000 --- a/vendor/open-telemetry/sdk/Trace/EventInterface.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace OpenTelemetry\SDK\Trace; - -use OpenTelemetry\SDK\Common\Attribute\AttributesInterface; - -interface EventInterface -{ - public function getName(): string; - public function getAttributes(): AttributesInterface; - public function getEpochNanos(): int; - public function getTotalAttributeCount(): int; -} |