N°9370 - use env-production-build for dry removal audit

wip
This commit is contained in:
odain
2026-03-12 15:04:21 +01:00
parent 358c4383f8
commit f2b15554bb
5 changed files with 16 additions and 25 deletions

View File

@@ -7,17 +7,14 @@ require_once APPROOT.'setup/feature_removal/ModelReflectionSerializer.php';
class SetupAudit extends AbstractSetupAudit
{
//file used when present to trigger audit exception when testing specific setups
public const GETISSUE_ERROR_MSG_FILE_FORTESTONLY = '.setup_audit_error_msg.txt';
private string $sEnvBefore;
private string $sEnvAfter;
public function __construct(string $sEnvBefore, string $sEnvAfter)
public function __construct(string $sEnvBefore)
{
parent::__construct();
$this->sEnvBefore = $sEnvBefore;
$this->sEnvAfter = $sEnvAfter;
$this->sEnvAfter = "$sEnvBefore-build";
}
public function ComputeClasses(): void