AttributesInterface.php
Namespace
OpenTelemetry\SDK\Common\AttributeFile
-
vendor/
open-telemetry/ sdk/ Common/ Attribute/ AttributesInterface.php
View source
<?php
declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Attribute;
use Countable;
use Traversable;
/**
* @psalm-suppress MissingTemplateParam
*/
interface AttributesInterface extends Traversable, Countable {
public function has(string $name) : bool;
public function get(string $name);
public function getDroppedAttributesCount() : int;
public function toArray() : array;
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
AttributesInterface | @psalm-suppress MissingTemplateParam |