initial commit
[emacs-init.git] / nxhtml / tests / in / zn-090529-doxysample.php
1 <?php
2 /**
3  * @file   doxysample.php
4  * @author Zoltán Nagy <abesto0@gmail.com>
5  * @date   Fri May 29 15:28:06 2009
6  *
7  * @brief  Example file commented with Doxygen (via doxymacs)
8  *
9  * Longer description of what this file is
10  * Possibly multiline
11  */
12
13
14 /**
15  * Echos the parameter
16  *
17  * @param text Text to echo
18  *
19  * @return EOL message
20  */
21 function say($text)
22 {
23   echo $text;
24   return "I spoketh.";
25 }
26 ?>
27
28 <div>
29 This is HTML, so the following has no special meaning:
30 /**
31  * Fake comment
32  *
33  * @param whatever Foo
34  *
35  * @return bar
36  */
37 </div>