Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SignifydOrderSessionId.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Signifyd\Model;
7 
9 
14 {
18  private $identityGenerator;
19 
23  public function __construct(
24  IdentityGeneratorInterface $identityGenerator
25  ) {
26  $this->identityGenerator = $identityGenerator;
27  }
28 
35  public function get($quoteId)
36  {
37  return $this->identityGenerator->generateIdForData($quoteId);
38  }
39 }
__construct(IdentityGeneratorInterface $identityGenerator)