mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-17 06:18:44 +02:00
N°9144 - Setup sequencer side A
This commit is contained in:
@@ -10,11 +10,11 @@ class SetupAudit extends AbstractSetupAudit
|
||||
private string $sEnvBefore;
|
||||
private string $sEnvAfter;
|
||||
|
||||
public function __construct(string $sEnvBefore)
|
||||
public function __construct(string $sEnvBefore, ?string $sEnvAfter = null)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->sEnvBefore = $sEnvBefore;
|
||||
$this->sEnvAfter = "$sEnvBefore-build";
|
||||
$this->sEnvAfter = $sEnvAfter ?? "$sEnvBefore-build";
|
||||
}
|
||||
|
||||
public function ComputeClasses(): void
|
||||
|
||||
Reference in New Issue
Block a user