Open
Description
I can't seem to get code completion working for my project. I have installed the plugin and linked to my php 7 bin folder.
Static functions seem to work okay but as soon as there is code similar to this:
File 1:
Class Test {
function test()
{
echo "hi";
}
}
File 2:
$tt = new Test();
$tt->test();
There is no code completion and no way for me to go to the definition. Is there any knows problems related to this or have it setup it in the wrong way?