Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doxygen does not document my non-class functions in PHP?

I'm using Doxygen (Doxywizard the GUI) to document a PHP project. Doxygen is not documenting my non-class files.

i.e. In some files, I havenot created any class, the file just contains some functions. Doxygen is not documenting the functions. Any help?

Here goes the config file Doxywizard generated for me

like image 257
Shafiul Avatar asked Dec 16 '22 10:12

Shafiul


1 Answers

Did you put a comment block containing a @file command in the file?

See also http://www.doxygen.org/docblocks.html#structuralcommands
(the paragraph that starts with "Let's repeat that, because it is often overlooked")

like image 124
doxygen Avatar answered Jan 28 '23 03:01

doxygen