I have a php (doxygen.php) file which I'd like to document. The problem is wen I run doxygen doxygen.php on linux it doesn't generate anything...index.html file is empty. I get
Warning: ignoring unknown tag `php' at line 1, file doxygen.php
Warning: ignoring unknown tag `does' at line 4, file doxygen.php
Warning: ignoring unknown tag `nothing' at line 4, file doxygen.php
....
It seems that it doesn't recognize the comments properly. My doxygen.php file has this:
<?php
/* does nothing
* @param teste
* @return null
*/
function foo($foo) {
echo 'hi'.$foo;
return null;
}
?>