identityGenerator = $identityGenerator; } /** * Returns unique identifier through generation uuid by quote id. * * @param int $quoteId * @return string */ public function get($quoteId) { return $this->identityGenerator->generateIdForData($quoteId); } }