N°9144 DataAuditSequencer v0

This commit is contained in:
Timothee
2026-01-29 10:02:56 +01:00
parent fd6ce5f5c4
commit ea44e39b2c
13 changed files with 303 additions and 223 deletions

View File

@@ -41,7 +41,7 @@ class ModelReflectionSerializer
exec(sprintf("$sPHPExec %s/get_model_reflection.php --env='%s'", __DIR__, $sEnv), $sOutput, $iRes);
if ($iRes != 0) {
$this->LogErrorWithProperLogger("Cannot get classes1", null, ['env' => $sEnv, 'code' => $iRes, "output" => $sOutput]);
throw new CoreException("Cannot get classes2");
throw new CoreException("Cannot get classes from env ".$sEnv);
}
$aClasses = json_decode($sOutput[0] ?? null, true);