Thanks for the great work. I am hitting one wall in a project currently: How can I get the uses tag values when the docblock comment is directly annotating the `use` as [in the documentation](https://phpstan.org/blog/generics-by-examples#specify-template-type-variable-of-a-generic-trait-when-using-it): ```php /** @template T of Foo */ class Bar { /** @use Part<T> */ use Part; } ``` I can get the class docblock from the class reflection, but how could I include this use annotation as well? Thank you!