blob: 4b9afcc57b562b5f9cc90737ab5e6f7c73478045 (
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
25
26
27
28
29
30
31
|
<?php
/* Icinga Web 2 | (c) 2014 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Setup;
/**
* Class to implement functionality for a single setup step
*/
abstract class Step
{
/**
* Apply this step's configuration changes
*
* @return bool
*/
abstract public function apply();
/**
* Return a HTML representation of this step's configuration changes supposed to be made
*
* @return string
*/
abstract public function getSummary();
/**
* Return a textual summary of all configuration changes made
*
* @return ?array
*/
abstract public function getReport();
}
|