I am having a problem with the PHP 5.3 name extension and Doxygen comments.
Example:
/**
* Sample Method
*
* @param string $output
* @return \Project\Lib\Rest
*/
Doxygen gives me the following warnings:
warning: Found unknown command `\Project'
warning: Found unknown command `\Lib'
warning: Found unknown command `\Rest'
What can I do to fix this or disable \ commands and use @commands
source
share