@return --
describes the return value of a function
Note
If no @return keyword is given,
PHPDoc uses void. The keyword is ignored, if (miss-)used in
a constructor function.
Example
...
* @return mixed a PEAR_Error object or an integer
* @return boolean true, if successful
... |