summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-08-30 10:31:32 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-09-02 10:03:26 +0200
commitea5854ca8c1193aacaee6fe059b2bfba636769e0 (patch)
tree2ea436f3e20a1ff7be44031b03141dd85b93b464 /UPGRADING
parentf50f7418b5c1bd0998feb987193c8859610d6ac9 (diff)
downloadphp-git-ea5854ca8c1193aacaee6fe059b2bfba636769e0.tar.gz
Make error_reporting=E_ALL the default
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING2
1 files changed, 2 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
index e4f2feccf2..457ffb8409 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -42,6 +42,8 @@ PHP 8.0 UPGRADE NOTES
. Any array that has a number n as its first numeric key will use n+1 for
its next implicit key. Even if n is negative.
RFC: https://wiki.php.net/rfc/negative_array_index
+ . The default error_reporting level is now E_ALL. Previously it excluded
+ E_NOTICE and E_DEPRECATED.
. The @ operator will no longer silence fatal errors (E_ERROR, E_CORE_ERROR,
E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR, E_PARSE). Error handlers
that expect error_reporting to be 0 when @ is used, should be adjusted to