icingaweb2/modules/setup/library/Setup/SetupWizard.php
Eric Lippmann 5fa2e3cfdc Revert "Add license header"
This reverts commit 338d067aba.
2015-02-03 16:16:26 +01:00

25 lines
450 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Setup;
/**
* Interface for wizards providing a setup and requirements
*/
interface SetupWizard
{
/**
* Return the setup for this wizard
*
* @return Setup
*/
public function getSetup();
/**
* Return the requirements of this wizard
*
* @return Requirements
*/
public function getRequirements();
}