summaryrefslogtreecommitdiff
path: root/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php')
-rw-r--r--vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php b/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php
deleted file mode 100644
index fea8a8713..000000000
--- a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Reporter/ReporterInterface.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-namespace Jaeger\Reporter;
-
-use Jaeger\Span;
-
-/**
- * Uses to report finished span to something that collects those spans.
- *
- * @package Jaeger\Reporter
- */
-interface ReporterInterface
-{
- /**
- * Report finished span.
- *
- * @param Span $span
- * @return void
- */
- public function reportSpan(Span $span);
-
- /**
- * Release any resources used by the reporter and flushes/sends the data.
- *
- * @return void
- */
- public function close();
-}