mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
22 lines
361 B
PHP
22 lines
361 B
PHP
<?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;
|
|
}
|
|
}
|