From 47633b479495f97f7242281bdb704fd2e441e9e0 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Sep 2021 21:57:23 +0200 Subject: [PATCH] A better explanation --- pandora_console/include/lib/Entity.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/lib/Entity.php b/pandora_console/include/lib/Entity.php index 3304c9e805..98b9aa8600 100644 --- a/pandora_console/include/lib/Entity.php +++ b/pandora_console/include/lib/Entity.php @@ -200,6 +200,10 @@ abstract class Entity // Do not return nor throw exceptions after this point, allow php // default __call behaviour to continue working with object method // defined. + // If you're receiving NULL as result of the method invocation, ensure + // it is not private, take in mind this method will mask any access + // level error or notification since it is public and has limited access + // to the object (public|protected). }