mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-09 18:38:47 +02:00
* N°9144 Fix static analysis issues with phpstan * up to level 1 for all setup files * up to level 5 for all wizardsteps
22 lines
375 B
PHP
22 lines
375 B
PHP
<?php
|
|
|
|
class WizardState
|
|
{
|
|
public function __construct(string $sNextStep, string $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;
|
|
}
|
|
}
|