Skip to content

Commit

Permalink
Use E_ALL instead of E_ALL | E_STRICT
Browse files Browse the repository at this point in the history
E_STRICT is deprecated as of PHP 8.4
  • Loading branch information
greg0ire committed Oct 9, 2024
1 parent 6580688 commit 08328ad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Tests/TestInit.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
use function mkdir;

use const E_ALL;
use const E_STRICT;

error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL);
date_default_timezone_set('UTC');

if (file_exists(__DIR__ . '/../../vendor/autoload.php')) {
Expand Down

0 comments on commit 08328ad

Please sign in to comment.