From acb7d97fe145d56c91a6aa7ced02db06bdef67eb Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 4 Jul 2021 12:17:24 +0200 Subject: [PATCH] Do not split type annotations over multiple lines PHPStan requires type annotations to be single-line. --- src/Value/ValueList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Value/ValueList.php b/src/Value/ValueList.php index 0b16c4aa..74d55a2d 100644 --- a/src/Value/ValueList.php +++ b/src/Value/ValueList.php @@ -17,8 +17,8 @@ abstract class ValueList extends Value protected $sSeparator; /** - * @param array - * |RuleValueList|CSSFunction|CSSString|LineName|Size|URL|string $aComponents + * phpcs:ignore Generic.Files.LineLength + * @param array|RuleValueList|CSSFunction|CSSString|LineName|Size|URL|string $aComponents */ public function __construct($aComponents = [], $sSeparator = ',', $iLineNo = 0) {