make tracer field non-static

This commit is contained in:
Andrew Dolgov 2023-10-20 21:34:36 +03:00
parent 7092a1e85d
commit bf6e3c381b
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Tracer {
private static $instance;
/** @var OpenTelemetry\API\Trace\TracerInterface $tracer */
private static $tracer;
private $tracer;
public function __construct() {
$OPENTELEMETRY_ENDPOINT = Config::get(Config::OPENTELEMETRY_ENDPOINT);