Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ElementHistory.php
Go to the documentation of this file.
1 <?php
8 
10 
17 {
21  private $new;
22 
26  private $old;
27 
34  public function __construct(ElementInterface $new, ElementInterface $old = null)
35  {
36  $this->new = $new;
37  $this->old = $old;
38  }
39 
45  public function getOld()
46  {
47  return $this->old;
48  }
49 
55  public function getNew()
56  {
57  return $this->new;
58  }
59 }
__construct(ElementInterface $new, ElementInterface $old=null)