I recently switch to vsCode, and I'm facing to a little problem.
PHP Intelephense works well for php and symfony completion, but when I wrote DQL / Query Builder I didn't have autocomplete of the field of entity :
$qb
->select('u.id, u.field1, u.field2, rel.field1')
->leftJoin('u.relation', 'rel')
->where('rel.fieldOnRelation = :condition')
->setParameter('condition', 'xxx')
;
u.*
didn't complete, and on leftJoin, I didn't have the field of the u
entity to choose, I need to type it manually.
I was on PhpStorm previously and the autocomplete works on dql.