Change default error_reporting level to E_ALL with no exceptions

This commit is contained in:
Kijin Sung 2024-01-04 14:46:15 +09:00
parent 010ba87c5b
commit 3a53e173bb

View file

@ -21,7 +21,7 @@ if (PHP_VERSION_ID < 70205)
/**
* Set error reporting rules.
*/
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
error_reporting(E_ALL);
/**
* Suppress date/time errors until the internal time zone is set (see below).