I'm trying to find out how to properly document an array property in a class for phpdocumentor.
Ex:
<?php
class foo {
/**
* This holds something important
* @var string
*/
protected $junk;
/**
* This holds an important array of strings
* @var ???????
*/
protected $stuff = array();
// ...
}
?>
I couldn't find anything in the phpdoc manual about array properties.