views:

490

answers:

1

Which is the correct doxygen format for PHP comments?

#1

/** Create HTML for tags
 * @param string @tags
 */

#2

   /** 
     * Create HTML for tags
     * @param string @tags
     */

#3

   /**! Create HTML for tags
     * @param string @tags
     */
+1  A: 

All should work.

elcuco
This suggests me that the problem is somewhere else, since I get no output in the generated LaTeX and HTML files in running Doxygen by Doxywizard.
Masi
The main problem is to be able to rerun Doxygen. I opened a new thread about this problem here http://stackoverflow.com/questions/1354022/rerunning-doxygen-guis-convertion-in-ubuntu
Masi