summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Logs/LogRecordExporterFactoryInterface.php
blob: 523bec1bafe03261f67523e6bc9b146fc6ea021f (plain)
1
2
3
4
5
6
7
8
9
10
<?php

declare(strict_types=1);

namespace OpenTelemetry\SDK\Logs;

interface LogRecordExporterFactoryInterface
{
    public function create(): LogRecordExporterInterface;
}