Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

AttributesInterface.php

Namespace

OpenTelemetry\SDK\Common\Attribute

File

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal