2014-09-29 08:19:05 -04:00
|
|
|
<?php
|
2026-03-26 12:46:27 -04:00
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2014-09-29 08:19:05 -04:00
|
|
|
|
2014-11-10 10:31:40 -05:00
|
|
|
namespace Icinga\Module\Setup;
|
2014-09-29 08:19:05 -04:00
|
|
|
|
|
|
|
|
/**
|
2014-11-10 04:30:52 -05:00
|
|
|
* Interface for wizards providing a setup and requirements
|
2014-09-29 08:19:05 -04:00
|
|
|
*/
|
|
|
|
|
interface SetupWizard
|
|
|
|
|
{
|
|
|
|
|
/**
|
2014-11-10 04:30:52 -05:00
|
|
|
* Return the setup for this wizard
|
2014-09-29 08:19:05 -04:00
|
|
|
*
|
2014-11-10 04:30:52 -05:00
|
|
|
* @return Setup
|
2014-09-29 08:19:05 -04:00
|
|
|
*/
|
2014-11-10 04:30:52 -05:00
|
|
|
public function getSetup();
|
2014-09-29 08:19:05 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the requirements of this wizard
|
|
|
|
|
*
|
2015-03-09 04:05:56 -04:00
|
|
|
* @return RequirementSet
|
2014-09-29 08:19:05 -04:00
|
|
|
*/
|
|
|
|
|
public function getRequirements();
|
|
|
|
|
}
|