16 lines
327 B
PHP
16 lines
327 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Common\Instrumentation;
|
||
|
|
||
|
interface InstrumentationScopeFactoryInterface
|
||
|
{
|
||
|
public function create(
|
||
|
string $name,
|
||
|
?string $version = null,
|
||
|
?string $schemaUrl = null,
|
||
|
iterable $attributes = []
|
||
|
): InstrumentationScopeInterface;
|
||
|
}
|