From af8641870bfc36e8b7fc67357a00d3c8b3d3751e Mon Sep 17 00:00:00 2001 From: Pawel Filipczak Date: Fri, 10 Jan 2025 16:26:20 +0100 Subject: [PATCH] Fixed issues reported by phpstan --- tests/bootstrap.php | 2 +- tests/polyfills/load.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 795658bf1..7ea01209e 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -21,7 +21,7 @@ declare(strict_types=1); -error_reporting(E_ALL | E_STRICT); +error_reporting(E_ALL); use ElasticApmTests\TestsRootDir; diff --git a/tests/polyfills/load.php b/tests/polyfills/load.php index 4abcd45bd..8b99a2f7e 100644 --- a/tests/polyfills/load.php +++ b/tests/polyfills/load.php @@ -21,7 +21,7 @@ declare(strict_types=1); -error_reporting(E_ALL | E_STRICT); +error_reporting(E_ALL); if (!function_exists('array_key_first')) { require __DIR__ . '/array_key_first.php';