and when I type -> I get autocomplete for the functions of the QueryBuilder:
But if the function leftJoin() takes the argument Join::INNER_JOIN the following lines of the block lose the autocomplete feature:
Also, the constant Join::INNER_JOIN it's not being autocompleted (like it's not recognized) so I guess that could be triggering the error, cause if I pass some other argument like leftJoin($a, $b) it is working.
So I have a block of code like this in Symfony/Doctrine:
and when I type
->
I get autocomplete for the functions of the QueryBuilder:But if the function
leftJoin()
takes the argumentJoin::INNER_JOIN
the following lines of the block lose the autocomplete feature:Also, the constant
Join::INNER_JOIN
it's not being autocompleted (like it's not recognized) so I guess that could be triggering the error, cause if I pass some other argument likeleftJoin($a, $b)
it is working.