How to find all PHP classes that belongs to namespace?
Sorry if such topic already discussed but I found nothing about it.
Is it possible to find all PHP classes that belongs to some namespace?
I tried to look at FileBasesIndex and Stub index in PHP open API but could not find proper way how it could be done
Please sign in to leave a comment.
First, you need to collect all classes, then filter them by a namespace. Note: the same set of methods exists for interfaces and traits.
Thanks a lot!