idea-php-symfony2-plugin
idea-php-symfony2-plugin copied to clipboard
[Doctrine] inversedBy click goto doesn't work with Example::class notation
When using
#[ORM\ManyToOne(targetEntity: Target::class, inversedBy: 'items')]
You can't cmd + click to go to the items property on the target class. This only works if you have the fqcn as a string for targetEntity
#[ORM\ManyToOne(targetEntity: 'App\Entity\Target', inversedBy: 'items')]
I am also having the same issue. Following.
supported