* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Backup\Manager; use PrestaShop\PrestaShop\Core\Backup\BackupInterface; /** * Interface BackupRemoverInterface defines contract for backup remover. */ interface BackupRemoverInterface { /** * @param BackupInterface $backup * * @return bool True if backup were removed successfully or False otherwise */ public function remove(BackupInterface $backup); }