Bugs item #486429, was opened at 2001-11-28 03:22
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486429&group_id=7183
Category: Code
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Josjojo (josjojo)
Assigned to: Nobody/Anonymous (nobody)
Summary: 'function f($g){' not processed correct
Initial Comment:
When there is a '{' directly after the ')' the
function will not be processed correctly.
Look at this example:
function f($g){
//Do something
}
This function will not be processed correctly. To let
phpdoc.php let it process correctly the function has
to have a space between ')' and '{'.
The corrected function (function from above):
function f($g) {
//Do something
}
Please correct this. Thanks.
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=107183&aid=486429&group_id=7183
|