mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 02:28:44 +02:00
N°9144 Add data audit setup step
N°8864 Fix unneeded char
This commit is contained in:
21
setup/wizardsteps/WizardState.php
Normal file
21
setup/wizardsteps/WizardState.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
class WizardState
|
||||
{
|
||||
public function __construct($sNextStep, $sCurrentState = '')
|
||||
{
|
||||
$this->sNextStep = $sNextStep;
|
||||
$this->sCurrentState = $sCurrentState;
|
||||
}
|
||||
private string $sNextStep;
|
||||
private string $sCurrentState;
|
||||
|
||||
public function GetNextStep()
|
||||
{
|
||||
return $this->sNextStep;
|
||||
}
|
||||
public function GetState()
|
||||
{
|
||||
return $this->sCurrentState;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user