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