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

Breadcrumb

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

function Span::updateName

@inheritDoc

File

vendor/open-telemetry/sdk/Trace/Span.php, line 216

Class

Span

Namespace

OpenTelemetry\SDK\Trace

Code

public function updateName(string $name) : self {
    if ($this->hasEnded) {
        return $this;
    }
    $this->name = $name;
    return $this;
}
RSS feed
Powered by Drupal