N°9144 - Setup sequencer side A

This commit is contained in:
Eric Espie
2026-04-01 17:02:17 +02:00
committed by odain
parent e2bda81414
commit 14d01b89a7
7 changed files with 359 additions and 411 deletions

View File

@@ -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