如何制作这样的东西? (所有方法默认折叠没有任何热键)
Solution found (File -> Settings -> Editor -> General -> Code Folding
This works for me: CTRL SHIFT numpad -
It also collapses the class... but then just manually re-open the class by clicking the + and the methods are folded.
And then you can re-open all methods with CTRL SHIFT numpad +
https://www.jetbrains.com/help/phpstorm/code-folding-commands.html
You don't need to change anything in the settings like Dmitry suggested.
Simply do ⌥⌘⌨ *1 -- That's OPTION+CMD+NumPad *, then 1.
If you're on Windows, it's CTRL+SHIFT+NumPad *, then 1.
I'm using ubuntu,
the command is
-> CTL, SHIFT and MINUS ( this will collapse the whole class including all methods )
-> CTL, PLUS ( will expand the class but all methods should be collapsed )
-> CTL, SHIFT and PLUS ( will expand the whole class including all methods )
for windows PhpStorm 2021.1
ctrl + expand method ctrl - collapse method ctrl+shift - collapse all method ctrl+shift + expand all method