19 lines
379 B
PHP
19 lines
379 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Common\Instrumentation;
|
||
|
|
||
|
use OpenTelemetry\SDK\Common\Attribute\AttributesInterface;
|
||
|
|
||
|
interface InstrumentationScopeInterface
|
||
|
{
|
||
|
public function getName(): string;
|
||
|
|
||
|
public function getVersion(): ?string;
|
||
|
|
||
|
public function getSchemaUrl(): ?string;
|
||
|
|
||
|
public function getAttributes(): AttributesInterface;
|
||
|
}
|