Commit 3dc6ff7
committed
BUGFIX: Drop use of
The use of `E_STRICT` is deprecated as of PHP 8.4, so this fixes
deprecation warnings. Furthermore, the constant is no longer useful…
In PHP 5.4, the functionality of `E_STRICT` was incorporated into
`E_ALL`, meaning strict standards notices are included in the `E_ALL`
error level. As a result, there is no need to use `E_STRICT` separately
starting with PHP 5.4. This change is documented in the PHP manual
under the migration guide for PHP 7.0, which states:
> All of the E_STRICT notices have been reclassified to other levels.
> The E_STRICT constant is retained, so calls like
> `error_reporting(E_ALL|E_STRICT)` will not cause an error.
(see https://www.php.net/manual/en/migration70.incompatible)E_STRICT to fix PHP 8.4 deprecation1 parent c8fe09c commit 3dc6ff7
File tree
3 files changed
+2
-3
lines changed- Neos.Flow
- Classes/Error
- Configuration
- Development
- Testing
3 files changed
+2
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
76 | 75 | | |
77 | 76 | | |
78 | 77 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments