A better explanation

This commit is contained in:
fbsanchez 2021-09-16 21:57:23 +02:00
parent 187c6700b1
commit 47633b4794
1 changed files with 4 additions and 0 deletions

View File

@ -200,6 +200,10 @@ abstract class Entity
// Do not return nor throw exceptions after this point, allow php // Do not return nor throw exceptions after this point, allow php
// default __call behaviour to continue working with object method // default __call behaviour to continue working with object method
// defined. // 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).
} }