Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. NoopTextMapPropagator.php

function NoopTextMapPropagator::getInstance

3 calls to NoopTextMapPropagator::getInstance()
PropagatorFactory::buildPropagator in vendor/open-telemetry/sdk/Propagation/PropagatorFactory.php
SdkBuilder::build in vendor/open-telemetry/sdk/SdkBuilder.php
_register.php in vendor/open-telemetry/sdk/Propagation/_register.php

File

vendor/open-telemetry/context/Propagation/NoopTextMapPropagator.php, line 14

Class

NoopTextMapPropagator

Namespace

OpenTelemetry\Context\Propagation

Code

public static function getInstance() : self {
    if (null === self::$instance) {
        self::$instance = new self();
    }
    return self::$instance;
}
RSS feed
Powered by Drupal