1234567891011121314151617181920212223242526272829303132 |
- <?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);
- }
|