%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/nextcloud/lib/public/Migration/ |
| Current File : /www/varak.net/nextcloud.varak.net/nextcloud/lib/public/Migration/IRepairStep.php |
<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCP\Migration;
/**
* Repair step
* @since 9.1.0
*/
interface IRepairStep {
/**
* Returns the step's name
*
* @return string
* @since 9.1.0
*/
public function getName();
/**
* Run repair step.
* Must throw exception on error.
*
* @param IOutput $output
* @throws \Exception in case of failure
* @since 9.1.0
*/
public function run(IOutput $output);
}