Source file structure
Last modified: 02 December 2022The Structure tool window: View | Tool Windows | Structure or Alt+7
The Structure popup: Navigate | File Structure or Ctrl+F12
By default, PhpStorm shows all classes, methods, and other elements of the current file. To toggle the elements you want to show, click the corresponding buttons on the Structure tool window toolbar.
Click
to have all the methods that override/implement the methods of a particular class/interface grouped under the node that corresponds to this class/interface.
Click
to have all files included through
include
orrequire
statements shown in the tree.Click
to show class properties.
Click
to show constants.
Click
to have protected class members shown in the tree.
Click
to have private class members shown in the tree.
Click
to show inherited members.
Click
to have anonymous classes shown in the tree.
Click
to show lambdas.

Show class members in the Project tool window
Right-click the Project tool window title bar and select Tree Appearance | Show Members from the context menu.
Thanks for your feedback!