summaryrefslogtreecommitdiff
path: root/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/ReporterFactory/ReporterFactoryInterface.php
blob: 4bfd3204fe277aa3bbac73dec47984084123d997 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace Jaeger\ReporterFactory;

use Jaeger\Reporter\ReporterInterface;

interface ReporterFactoryInterface
{
    public function createReporter() : ReporterInterface;
}