As per [ #460182 ] multiple vars declaration on one line
You can't declare multiple vars on the same line and have them 
be documented by phpdoc

for example:

	doesn't work:
	var $firstname, $lastname, $uid, $birthdate;

	works:
	var $firstname;
	var $lastname;
