From 50fd28f8bb6623f5566e9bd5ca09a0ba97e0d983 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 28 Jan 2025 23:37:20 +0100 Subject: [PATCH] [CLEANUP] Drop a redundant type annotation in `Parser` --- src/Parser.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Parser.php b/src/Parser.php index 9f9f4595..858c0d74 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -20,7 +20,6 @@ class Parser /** * @param string $sText the complete CSS as text (i.e., usually the contents of a CSS file) - * @param Settings|null $oParserSettings * @param int $lineNumber the line number (starting from 1, not from 0) */ public function __construct($sText, ?Settings $oParserSettings = null, $lineNumber = 1)