2

I started learning Laravel, and also I got a licence for PhpStorm so I decided to use this software. I set it up without problems, but I'm having a problem with disabling this option which you can see in the picture.

I tried googling it, tried different things in PhpStorm settings, but I cant seem to turn off that 'column:' thingy.

code in editor

bad_coder
  • 11,289
  • 20
  • 44
  • 72
Dvenee
  • 39
  • 7

3 Answers3

3

In Settings | Editor | General | Appearance, try disabling Show parameter name hints

enter image description here

lena
  • 90,154
  • 11
  • 145
  • 150
2

I think you're referring to the parameter name hints. You'll see those in other places too, not just for "column". You can disable them in the PHPStorm preferences at

Editor->General->Appearance->Show parameter name hints

There's also an option there to configure when they will show up, if you want to leave them on in certain cases.

Don't Panic
  • 41,125
  • 10
  • 61
  • 80
0

The feature is called Parameter Hints. Right-click on the hint (column in your case) and choose Disable Hints:

Disable Hints

You can also use this context menu to remove hints for this specific function name.

Álvaro González
  • 142,137
  • 41
  • 261
  • 360