You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an expression begins with @, PHP will suppress any errors generated by the expression. The error handler provided by oslogger still prints out the errors. The following needs to be added to src/ErrorHandler.php at line 58:
if (error_reporting() === 0) {
return;
}
Perhaps make an option to always print errors even when suppressed.
The text was updated successfully, but these errors were encountered:
If an expression begins with @, PHP will suppress any errors generated by the expression. The error handler provided by oslogger still prints out the errors. The following needs to be added to
src/ErrorHandler.php
at line 58:Perhaps make an option to always print errors even when suppressed.
The text was updated successfully, but these errors were encountered: