I'm running into the following error: ``` Undefined constant PHPStan\PhpDocParser\Ast\Type\ArrayShapeNode::KIND_NON_EMPTY_ARRAY ``` on `phpstan/phpdoc-parser/src/Parser/TypeParser.php:204`. Reproducible for me with the example code: ```php $config = new ParserConfig(usedAttributes: []); $lexer = new Lexer(); $constExprParser = new ConstExprParser(); $typeParser = new TypeParser($config, $constExprParser); $phpDocParser = new PhpDocParser($config, $typeParser, $constExprParser); $tokens = new TokenIterator($lexer->tokenize('/** @param Lorem $a */')); return $phpDocParser->parse($tokens); ```