Files
tt-rss/vendor/open-telemetry/sdk/Common/Attribute/AttributesFactoryInterface.php
T
2023-10-20 21:13:39 +03:00

11 lines
262 B
PHP

<?php
declare(strict_types=1);
namespace OpenTelemetry\SDK\Common\Attribute;
interface AttributesFactoryInterface
{
public function builder(iterable $attributes = [], ?AttributeValidatorInterface $attributeValidator = null): AttributesBuilderInterface;
}