Skip to content

False positive found

First of all thanks for this nice library, works really neat!

While working with it, I think I encountered an issue. Suppose I have this class in the View namespace:

namespace View;

class Services {

}

And some ViewServices:

namespace View\Service;

class MyViewService1 {

}
namespace View\Service;

class MyViewServiceN {

}

When I then want to find all classes in the View\Service namespace, the View\Services class is also returned while it is in the View namespace and not in the View\Service namespace...