How to disable parameter name hints in PhpStorm?

A bit of general info on parameter names hints can be found in this official introduction blog post: https://blog.jetbrains.com/phpstorm/2017/03/new-in-phpstorm-2017-1-parameter-hints/


Now back to the actual question:

NOTE: It’s all working since 2017.1 version

Either right click on such parameter and choose appropriate action from the menu

enter image description here

or go via Settings/Preferences directly:

Settings/Preferences | Editor | Appearance --> Show parameter names hints

enter image description here

In latest 2019.3 version this option is now located at Settings/Preferences | Editor | Inlay Hints where you can configure that on per supported language basis:

enter image description here


If you wish to customize colors used to display such hints (especially viable for custom color schemes that use dark background colors) then please do it at

  1. Settings/Preferences
  2. Editor | Colors & Fonts | Language Defaults
  3. Inline parameter hints node.

enter image description here

Leave a Comment