public function serializeSpanId(string $spanId) : string { // @phpstan-ignore-next-line return match ($this->contentType) { ContentTypes::PROTOBUF => $spanId, ContentTypes::JSON, ContentTypes::NDJSON => base64_decode(bin2hex($spanId)), }; }