Re: [Doxygen-develop] RE: PHP and aggregated Objects
Brought to you by:
dimitri
From: Marek L. <ma...@le...> - 2005-09-26 11:51:55
|
Sönke Ruempler napisał(a): > Hi Jens, > > > Thx for your answer. I tried several methods inspired from your example, but > doxygen ignores everything except writing the type between visibilty and the > variable name. And that's no valid PHP syntax :-/ Try this: class TestClass { /** * Brief description. * * Detailed description. */ public $someVar; /** * Some method. */ public static function f2 () { } } As you see Doxygen will generate documentation for $someVar, however you cannot put "@var" tag. It seems like a bug, because when you put "@var $someVar" doxygen looks for TestClass::someVar member. ML |