11 lines
171 B
PHP
11 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Metrics;
|
||
|
|
||
|
interface MetricExporterFactoryInterface
|
||
|
{
|
||
|
public function create(): MetricExporterInterface;
|
||
|
}
|