N°8760: revert dry removal audit and use real file deletion again

code formatting
This commit is contained in:
odain
2025-12-04 16:51:02 +01:00
parent ae980e365d
commit 9f3d7d2c36
20 changed files with 121 additions and 126 deletions

View File

@@ -35,7 +35,7 @@ class ModelReflectionSerializer
$iRes = 0;
exec(sprintf("$sPHPExec %s/get_model_reflection.php --env='%s'", __DIR__, $sEnv), $sOutput, $iRes);
if ($iRes != 0) {
\IssueLog::Error("Cannot get classes", null, ['code' => $iRes, "output" => $sOutput]);
\IssueLog::Error("Cannot get classes", null, ['env' => $sEnv, 'code' => $iRes, "output" => $sOutput]);
throw new CoreException("Cannot get classes");
}
@@ -52,4 +52,4 @@ class ModelReflectionSerializer
return $aClasses;
}
}
}