Aleksandr
Aleksandr

Reputation: 85

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

Upvotes: 3

Views: 1200

Answers (1)

Catzilla
Catzilla

Reputation: 402

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

Upvotes: 10

Related Questions