mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
32 lines
576 B
PHP
32 lines
576 B
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);
|
|
}
|