If E_DEPRECATED is defined and $errno is either E_DEPRECATED or E_USER_DEPRECATED, return from handleError().
Actual behaviour
If E_DEPRECATED is defined and $errno is any value, return from handleError(). This means that exceptions are never thrown by the method whenever E_DEPRECATED is defined.
Expected behaviour
If
E_DEPRECATED
is defined and$errno
is eitherE_DEPRECATED
orE_USER_DEPRECATED
, return fromhandleError()
.Actual behaviour
If
E_DEPRECATED
is defined and$errno
is any value, return fromhandleError()
. This means that exceptions are never thrown by the method wheneverE_DEPRECATED
is defined.