1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/17176] Ignore useless override check

PHPBB3-17176
This commit is contained in:
Marc Alexander
2023-09-21 17:03:28 +02:00
parent 2d06dd03f0
commit 49be2ad32c

View File

@@ -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);
}