- Use EnterEnter to insert the selected string at the insertion point.
- Use TabTab to replace the string next to the caret with the selected one.
- Use Ctrl+Shift+EnterCtrl+Shift+Enter to make the current code construct syntactically correct (balance parentheses, add missing braces and semicolons, etc.)
- It is possible to enter the desired element name manually when the input position is highlighted and
the list of suggestions is open. As you type, the suggestion list shrinks so that only matching element names remain:

If you enter a name that is not used in the scope, PhpStorm will inform you with a pop-up window as shown in the figure below:

-
It is possible to type any part of a word,
even the characters located somewhere in the middle of the word:

That's why asterisk character doesn't get any special processing as a wildcard.
Tip
- If, invoking an action, you don’t get what you want immediately, invoke this action again by pressing the same shortcut
. - Most suitable variants in the suggestion list are displayed on the green background on top of the list.
- Entries in bold font on top of the list denote symbols defined in the current class. All the other symbols are shown below.
- Use the Quick Definition View. If you select an entry in a list and press
Ctrl+Shift+ICtrl+Shift+I, PhpStorm displays the following quick information pop-up window:

Click image to close this popup
Click thumbnail to view larger image. -
Quick Information View works in a suggestion list. If you select an entry in a list, and press
Ctrl+QCtrl+Q, PhpStorm displays the following quick information pop-up window:

Click image to close this popup
Click thumbnail to view larger image.
-
Click
or
in the lower-right corner of the list to toggle between sorting in alphabetical order, or by relevance.
- Start typing the source code, and press Ctrl+Shift+SpaceCtrl+Shift+Space or Ctrl+SpaceCtrl+Space. The suggestion list appears.
- While in the suggestion list, press Ctrl+HCtrl+H. The Hierarchy tool window shows the type hierarchy of the class, selected in the suggestion list.

