11 lines
262 B
PHP
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;
|
||
|
}
|