From 112aaa0cd10d2626030f7a25b1756e9715d88119 Mon Sep 17 00:00:00 2001 From: Thorsten Rinne Date: Sun, 8 Dec 2024 19:15:57 +0100 Subject: [PATCH] build: hide external deprecation warnings --- tests/bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index e96386edff..fea3b7ef0a 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -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 @@ -63,7 +63,7 @@ $loader->register(); // -// Delete possible SQLite file first +// Delete a possible SQLite file first // @unlink(PMF_TEST_DIR . '/test.db');