make tracer field non-static
This commit is contained in:
parent
7092a1e85d
commit
bf6e3c381b
|
@ -13,7 +13,7 @@ class Tracer {
|
||||||
private static $instance;
|
private static $instance;
|
||||||
|
|
||||||
/** @var OpenTelemetry\API\Trace\TracerInterface $tracer */
|
/** @var OpenTelemetry\API\Trace\TracerInterface $tracer */
|
||||||
private static $tracer;
|
private $tracer;
|
||||||
|
|
||||||
public function __construct() {
|
public function __construct() {
|
||||||
$OPENTELEMETRY_ENDPOINT = Config::get(Config::OPENTELEMETRY_ENDPOINT);
|
$OPENTELEMETRY_ENDPOINT = Config::get(Config::OPENTELEMETRY_ENDPOINT);
|
||||||
|
|
Loading…
Reference in New Issue