Hi.
Thanks for this awesome plugin! Makes refactoring so much easier.
Hopefully I am using it wrong, but when I try to "find usages" of Entity麓s property, then I don麓t get results for ones used by \Doctrine\ORM\EntityRepository->findBy or \Doctrine\ORM\EntityRepository->findOneBy. Yet go to declaration works :)

Similar issues are with querybuilder:




PS: It doesn't matter if property is private or public.
A related issue is PHPStorm inspection can't find custom methods in Entity Repository.
/* @var Node $node */
$node = $em->getRepository('App:Node')->getCustomQueryFromRepository($id);
PHPStorm is searching the underlying Doctrine Repository class, not the user-contributed Entity Repository. PHPStorm and the Symfony Bundle aren't seeing the reference to the entity repository in the annotation in the Entity:
*
* @ORM\Entity(repositoryClass="App\Repository\NodeRepository")
*
Thanks!
Most helpful comment
A related issue is PHPStorm inspection can't find custom methods in Entity Repository.
PHPStorm is searching the underlying Doctrine Repository class, not the user-contributed Entity Repository. PHPStorm and the Symfony Bundle aren't seeing the reference to the entity repository in the annotation in the Entity:
Thanks!