ttrss/vendor/open-telemetry/sdk/Common/Attribute/AttributesInterface.php

20 lines
357 B
PHP
Raw Normal View History

2023-10-20 14:12:29 +00:00
<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Common\Attribute;
use Countable;
use Traversable;
interface AttributesInterface extends Traversable, Countable
{
public function has(string $name): bool;
public function get(string $name);
public function getDroppedAttributesCount(): int;
public function toArray(): array;
}