blob: c7ad0c3f9c6be3e47fccc89cf38a7de875585b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
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 RequirementSet
*/
public function getRequirements();
}
|