Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DataHashGenerator.php
Go to the documentation of this file.
1 <?php
8 
10 {
15  public function getHash(array $data)
16  {
17  $countryId = $data['dest_country_id'];
18  $regionId = $data['dest_region_id'];
19  $zipCode = $data['dest_zip'];
20  $conditionValue = $data['condition_value'];
21 
22  return sprintf("%s-%d-%s-%F", $countryId, $regionId, $zipCode, $conditionValue);
23  }
24 }