Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make VS Code see methods and properties first

When i type :

$some = new Some();

$some->

I first see realy much trash in the form of base functions, global variables and etc. But not methods or properties of class.

I will see this only if i will type more symbols, but its very inconveniently .

I already install "php intelephense", "php intellisense" and "phpfmt" intentions, but this hasn't helped.

How it looks like:
How it looks like

like image 483
Aleksandr Avatar asked Oct 22 '25 11:10

Aleksandr


1 Answers

You should disable php.suggest.basic parameter in VSCode settings (paste in search on settings page)

like image 138
Catzilla Avatar answered Oct 25 '25 01:10

Catzilla