Doxygen and Visiblity Keywords in PHP -
I think if I do this in PHP:
class Foo {/ * * * Something Good * Returns * Always 1 * / Public Function Bar Returns () {Return 1; }}
Doxygen member will not document the function 'bar'
If I remove the 'public' keyword, then it does. Is there some setting that controls it? I looked online and saw nothing about it.
It turns out that I was running the wrong version Doxygen My way was already Docgigan, and it was pointing to 1.3x. Now everything works.
Comments
Post a Comment