🔊 N°3731 Log calls to deprecated files / PHP methods

POC for the log API was added in #193
This commit is contained in:
Pierre Goiffon
2021-04-13 16:20:32 +02:00
parent a6d20ab648
commit 59678ef8c6
39 changed files with 248 additions and 145 deletions

View File

@@ -994,6 +994,8 @@ class ModelFactory
*/
function HasLoadErrors()
{
DeprecatedCallsLog::NotifyDeprecatedPhpMethod('Errors are now sent by Exception');
return (count(self::$aLoadErrors) > 0);
}
@@ -1003,6 +1005,8 @@ class ModelFactory
*/
function GetLoadErrors()
{
DeprecatedCallsLog::NotifyDeprecatedPhpMethod('Errors are now sent by Exception');
return self::$aLoadErrors;
}