-
-
Notifications
You must be signed in to change notification settings - Fork 89
Closed as not planned
Labels
Description
The E_STRICT
constant has been deprecated since PHP 8.4, see https://php.watch/versions/8.4/E_STRICT-deprecated.
It should be either removed or replaced by E_NOTICE
as "since PHP 8.0, all E_STRICT
notices have changed to E_NOTICE
".
E_STRICT
has already been removed from scripts/build-phar.php
in #619, but there are 3 occurrences in tests/Core/File/IsReferenceTest.inc
:
error_reporting( E_NOTICE & E_STRICT ); |
$d = E_NOTICE & E_STRICT, |
$fn = fn( $one = E_NOTICE & E_STRICT) => 1; |