felixfbecker / vscode-php-intellisense

Advanced PHP IntelliSense for Visual Studio Code 🆚💬
MIT License
409 stars 93 forks source link

function names inserted as GlobalFunctionName #593

Open worldtok opened 2 years ago

worldtok commented 2 years ago
function dj($d)
{
    die(json_encode($d));
}

GlobalDj()

The above function is written, but when I type the function as dj and press enter it automatically turns it ``` GlobalDj() ````

Please if there's any setting I have to do I will be glad to know.