@var

@var --  describes class variables

Synopsis

@var { type|objectdefinition } { $varname } [ description ]

Scope

Note

If no type is given, PHPDoc tries to guess.

Example

...
* @var string  $name    name of the person
*/
var name = "" ;
...