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

Breadcrumb

  1. Drupal Core 11.1.x

Attributes.php

Same filename in this branch
  1. 11.1.x vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php

Namespace

OpenTelemetry\SDK\Common\Attribute

File

vendor/open-telemetry/sdk/Common/Attribute/Attributes.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Attribute;

use function array_key_exists;
use IteratorAggregate;
use Traversable;

/**
 * @psalm-suppress MissingTemplateParam
 */
final class Attributes implements AttributesInterface, IteratorAggregate {
    
    /**
     * @internal
     */
    public function __construct(array $attributes, int $droppedAttributesCount) {
    }
    public static function create(iterable $attributes) : AttributesInterface {
        return self::factory()->builder($attributes)
            ->build();
    }
    public static function factory(?int $attributeCountLimit = null, ?int $attributeValueLengthLimit = null) : AttributesFactoryInterface {
        return new AttributesFactory($attributeCountLimit, $attributeValueLengthLimit);
    }
    public function has(string $name) : bool {
        return array_key_exists($name, $this->attributes);
    }
    public function get(string $name) {
        return $this->attributes[$name] ?? null;
    }
    
    /** @psalm-mutation-free */
    public function count() : int {
        return \count($this->attributes);
    }
    public function getIterator() : Traversable {
        foreach ($this->attributes as $key => $value) {
            (yield (string) $key => $value);
        }
    }
    public function toArray() : array {
        return $this->attributes;
    }
    public function getDroppedAttributesCount() : int {
        return $this->droppedAttributesCount;
    }

}

Classes

Title Deprecated Summary
Attributes @psalm-suppress MissingTemplateParam

API Navigation

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