From 2ed8ad3a904e2691787df8b09eb2ae133d6d9735 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 14 Feb 2025 23:18:51 +0100 Subject: [PATCH] [TASK] Drop redundant `OutputException` constructor --- src/Parsing/OutputException.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Parsing/OutputException.php b/src/Parsing/OutputException.php index f715080d..0a20dc96 100644 --- a/src/Parsing/OutputException.php +++ b/src/Parsing/OutputException.php @@ -7,13 +7,4 @@ /** * Thrown if the CSS parser attempts to print something invalid. */ -final class OutputException extends SourceException -{ - /** - * @param int<0, max> $lineNumber - */ - public function __construct(string $sMessage, int $lineNumber = 0) - { - parent::__construct($sMessage, $lineNumber); - } -} +final class OutputException extends SourceException {}