From 49be2ad32c2f6b3f4c0905b07c2108514cfc6f49 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Thu, 21 Sep 2023 17:03:28 +0200 Subject: [PATCH] [ticket/17176] Ignore useless override check PHPBB3-17176 --- phpBB/phpbb/debug/error_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/debug/error_handler.php b/phpBB/phpbb/debug/error_handler.php index 89da70e619..f0a1efa3e3 100644 --- a/phpBB/phpbb/debug/error_handler.php +++ b/phpBB/phpbb/debug/error_handler.php @@ -24,7 +24,7 @@ class error_handler extends ErrorHandler /** * @psalm-suppress MethodSignatureMismatch */ - public function __construct(BufferingLogger $bootstrappingLogger = null, private readonly bool $debug = false) + public function __construct(BufferingLogger $bootstrappingLogger = null, private readonly bool $debug = false) // phpcs:ignore Generic.CodeAnalysis.UselessOverridingMethod.Found { parent::__construct($bootstrappingLogger, $debug); }