Fix #80164: Example says "see changelog" but there's no changelog

That example refers to a changelog entry which stated that E_ALL is
available as of PHP 5.4.0.  Since the documenation does no longer
document PHP 5, that referral has to be removed.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350716 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2020-09-30 12:05:41 +00:00
parent e61d2217d5
commit b92a33c51c

View file

@ -79,7 +79,7 @@ error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
// Report all errors except E_NOTICE
error_reporting(E_ALL & ~E_NOTICE);
// Report all PHP errors (see changelog)
// Report all PHP errors
error_reporting(E_ALL);
// Report all PHP errors