I like to use the structure toolbar in PhpStorm to jump between functions and keep a general overview over the structure of a class. However, the toolbar only shows functions for navigational points. Some classes have methods that can be understood as belonging to a certain logic. Colleagues and I myself have therefore started using docblocks to structure the files further.
I would like to use a tag in the docblocks that adds additional subsections in the structure toolbar, just like an anchor in an html file. Is there something like this?
I looked up the available tags on https://docs.phpdoc.org/latest/guide/references/phpdoc/tags/index.html but did not find any tags that offered the requested functionality. I included the IDE in this question since I am open to using an extension if that would offer a solution.