How can I generate a list of class methods with their descriptions, which would be taken from the comment to each method? Is there something automatic for this purpose? In phpstorm it is possible to display a list of methods. But no description.

  • 2
    doxygen and hedgehog with him - ArchDemon

1 answer 1

For a start, arrange the code in accordance with phpdoc https://ru.wikipedia.org/wiki/PHPDoc (At least the function descriptions)

And then generate the documentation using doxygen or analogues (as written by ArchDemon)