N°9144 Add data audit setup step

N°8864 Fix unneeded char
This commit is contained in:
Timmy38
2026-02-19 14:27:24 +01:00
committed by GitHub
parent 5b58e40fc9
commit c4d7c89553
40 changed files with 5110 additions and 4086 deletions

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