Overrides IdGeneratorInterface::generateSpanId
public function generateSpanId() : string { do { $spanId = $this->randomHex(self::SPAN_ID_HEX_LENGTH); } while (!SpanContextValidator::isValidSpanId($spanId)); return $spanId; }