Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Generator.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Generator
14 {
20  private $serializer;
21 
25  public function __construct(SerializerInterface $serializer)
26  {
27  $this->serializer = $serializer;
28  }
29 
36  public function generate($data)
37  {
38  return sha1($this->serializer->serialize($data));
39  }
40 }
__construct(SerializerInterface $serializer)
Definition: Generator.php:25