Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
StateInterface.php
Go to the documentation of this file.
1 <?php
7 
11 interface StateInterface
12 {
16  const ERROR = 'error';
17  const INSTALLED = 'installed';
18 
24  public function setError();
25 
31  public function hasError();
32 
38  public function setInstalled();
39 
45  public function isInstalled();
46 
52  public function clearState();
53 }