diff --git a/src/Parser/PhpDocParser.php b/src/Parser/PhpDocParser.php index 531e0b88..a148da66 100644 --- a/src/Parser/PhpDocParser.php +++ b/src/Parser/PhpDocParser.php @@ -132,6 +132,7 @@ public function parseTagValue(TokenIterator $tokens, string $tag): Ast\PhpDoc\Ph break; case '@throws': + case '@phpstan-throws': $tagValue = $this->parseThrowsTagValue($tokens); break;