13 lines
209 B
PHP
13 lines
209 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Common\Attribute;
|
||
|
|
||
|
use ArrayAccess;
|
||
|
|
||
|
interface AttributesBuilderInterface extends ArrayAccess
|
||
|
{
|
||
|
public function build(): AttributesInterface;
|
||
|
}
|