Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractRollback.php
Go to the documentation of this file.
1 <?php
7 
9 
16 abstract class AbstractRollback
17 {
23  protected $_snapshot;
24 
30  public function __construct(Filesystem $snapshotObject)
31  {
32  $this->_snapshot = $snapshotObject;
33  }
34 
40  abstract public function run();
41 }