TheNouillet / symfony-vscode

Symfony extension for Visual Studio Code
MIT License
20 stars 22 forks source link

Can't go to all references for a function inside service #53

Open ktoumahorca opened 4 years ago

ktoumahorca commented 4 years ago

Hello,

When i access to option "Find All References" throught right click on a function inside a service, the indexer doesn't go to references except if the service is typed, example below :

/** @var DocAccordService $docAccordService */
$docAccordService = $this->get('app.doc_accord_service');

On PHPStorm it works even it's not typed.

Thank you