From 75278e2b6ab372e67784caaab2f88c711eb7be06 Mon Sep 17 00:00:00 2001 From: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:46:37 +0200 Subject: [PATCH] fix(lexer): Fix typo in TokenizedAnnotation breaking psalm --- src/Type/Parser/Lexer/TokenizedAnnotation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Type/Parser/Lexer/TokenizedAnnotation.php b/src/Type/Parser/Lexer/TokenizedAnnotation.php index 4e4c403c..0aa15f99 100644 --- a/src/Type/Parser/Lexer/TokenizedAnnotation.php +++ b/src/Type/Parser/Lexer/TokenizedAnnotation.php @@ -13,7 +13,7 @@ final class TokenizedAnnotation public function __construct( /** @var non-empty-string */ private string $name, - /** @var non-empty-list> */ + /** @var non-empty-list */ private array $tokens, ) {}