mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-28 00:04:04 +02:00
parent
5d6391242c
commit
4a14dc5916
25
library/Icinga/Web/Setup/SetupWizard.php
Normal file
25
library/Icinga/Web/Setup/SetupWizard.php
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?php
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||||||
|
|
||||||
|
namespace Icinga\Web\Setup;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface for setup wizards providing an installer and requirements
|
||||||
|
*/
|
||||||
|
interface SetupWizard
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Return the installer for this wizard
|
||||||
|
*
|
||||||
|
* @return Installer
|
||||||
|
*/
|
||||||
|
public function getInstaller();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the requirements of this wizard
|
||||||
|
*
|
||||||
|
* @return Requirements
|
||||||
|
*/
|
||||||
|
public function getRequirements();
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user