Support question
What should I do with @return when returning the \ReflectionClass of a generic class?
https://phpstan.org/r/016e8878-a594-448f-b449-cc0a49214e26
I tried the following:
@return \ReflectionClass<Bar>
@return \ReflectionClass<Bar<T>>
@template T + @return \ReflectionClass<Bar>