This question already has answers here:
Closed 7 years ago.
Possible Duplicate:
PHPDoc type hinting for array of objects?
I use PhpDocumentor2 for generating documentation. I searched for this subject but I can't find specific rule for it. For Example I have class which name is AddressField and I want to specify my $addressFields as array of AddressField objects.
/**
* @var AddressField[]
*/
private $addressFields;