If you have a function like this then the script messes it up.
/**
* @return CollectionType<BuiltinType<TypeIdentifier::ARRAY>>
*/
public static function array(?Type $value = null, ?Type $key = null, bool $asList = false): CollectionType
{
return self::collection(self::builtin(TypeIdentifier::ARRAY), $value, $key, $asList);
}