Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Setup/SampleData/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Setup/SampleData/StateInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\Setup\SampleData;

/**
 * Interface for SampleData modules installation
 */
interface StateInterface
{
    /**
     * Current state
     */
    const ERROR = 'error';
    const INSTALLED = 'installed';

    /**
     * Set error flag to Sample Data state
     *
     * @return void
     */
    public function setError();

    /**
     * Check if Sample Data state has error
     *
     * @return bool
     */
    public function hasError();

    /**
     * Set installed flag to Sample Data state
     *
     * @return void
     */
    public function setInstalled();

    /**
     * Check if Sample Data is installed
     *
     * @return bool
     */
    public function isInstalled();

    /**
     * Clear Sample Data state
     *
     * @return void
     */
    public function clearState();
}