Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ElementHistoryFactory.php
Go to the documentation of this file.
1 <?php
8 
10 
15 {
19  private $objectManager;
20 
26  public function __construct(ObjectManagerInterface $objectManager)
27  {
28  $this->objectManager = $objectManager;
29  }
30 
40  public function create(array $data)
41  {
42  return $this->objectManager->create(ElementHistory::class, $data);
43  }
44 }
$objectManager
Definition: bootstrap.php:17