Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Backup/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Backup/SourceFileInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Interface for work with archives
 *
 * @author      Magento Core Team <core@magentocommerce.com>
 */

namespace Magento\Framework\Backup;

interface SourceFileInterface
{

    /**
     * Check if keep files of backup
     *
     * @return bool
     */
    public function keepSourceFile();

    /**
     * Set if keep files of backup
     *
     * @param bool $keepSourceFile
     * @return $this
     */
    public function setKeepSourceFile(bool $keepSourceFile);
}