I'm running phpdoc
on my project and there's a file (the only meaningful file), in which the order of methods is important for grouping methods. How can I have the same order of functions in the generated documentation as in the source file?
Actually, I'm ready to change doc framework, if it helps.
I think it is not possible to declare a specific order.
It is possible to build
@package
s tho, which is meant for namespaces in PHP (afaik..).If you have declared a
@package
, you can define@subpackage
s to group methods/functions.Besides the grouping feature, you should try to improve your programing by semantically and logically splitting big classes into smaller, business parts.