Is it possible to highlight special words in PhpStorm?

I tried to find how to highlight certain words in PhpStorm, but did not find anything.

The basic idea is that I want to change the background color for any use of the DebugLogger class to improve its visibility in my code. This is a regular custom PHP class that is used mostly statically, so I need to specify the word "DebugLogger" exactly, not the class instances.

I can apply custom colors to all class names, but not to one or two that I want to highlight. Is it possible at all?

+4
source share

All Articles