N°4720 - Remove old unreferenced methods that are @deprecated

This commit is contained in:
Anne-Cath
2025-07-31 11:06:09 +02:00
parent 3eb8437c32
commit f1762845f0
2 changed files with 0 additions and 32 deletions

View File

@@ -90,26 +90,6 @@ abstract class Expression {
return $aRet;
}
/**
* recursive rendering
*
* @deprecated 3.0.0 use RenderExpression
*
* @param array $aArgs used as input by default, or used as output if bRetrofitParams set to True
* @param bool $bRetrofitParams
*
* @return array|string
* @throws \MissingQueryArgument
*/
public function Render(&$aArgs = null, $bRetrofitParams = false)
{
// cannot notify depreciation for now as this is still MASSIVELY used in iTop core !
DeprecatedCallsLog::NotifyDeprecatedPhpMethod('use RenderExpression');
return $this->RenderExpression(false, $aArgs, $bRetrofitParams);
}
/**
* recursive rendering
*