diff --git a/CHANGELOG.md b/CHANGELOG.md index cead244c..da7751c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ Please also have a look at our ### Fixed +- Only allow strings as `LineName` components (#1590) + ### Documentation ## 9.3.0: Support for modern CSS at-rules and autoloading bugfix diff --git a/src/Value/LineName.php b/src/Value/LineName.php index 3629880a..a2ec2bea 100644 --- a/src/Value/LineName.php +++ b/src/Value/LineName.php @@ -18,7 +18,7 @@ class LineName extends ValueList { /** - * @param array $components + * @param array $components * @param int<1, max>|null $lineNumber */ public function __construct(array $components = [], ?int $lineNumber = null)