Files
iTop/setup/wizardsteps/WizardState.php
Timmy38 d0ddb35f8d N°9144 Fix static analysis issues (#885)
* N°9144 Fix static analysis issues with phpstan
* up to level 1 for all setup files
* up to level 5 for all wizardsteps
2026-04-23 14:08:22 +02:00

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;
}
}