Skip to content

Commit

Permalink
build: hide external deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Dec 8, 2024
1 parent fc75b1c commit 112aaa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL | E_STRICT);
error_reporting(E_ALL & ~E_DEPRECATED);

//
// The root directory
Expand Down Expand Up @@ -63,7 +63,7 @@
$loader->register();

//
// Delete possible SQLite file first
// Delete a possible SQLite file first
//
@unlink(PMF_TEST_DIR . '/test.db');

Expand Down

0 comments on commit 112aaa0

Please sign in to comment.