Dire che ho una funzione come questa:Come documentare un array di [tipo]?
function theFunction() {
$arr = array();
for ($i=0;$i<10;$i++) {
$arr[] = new theObject($i);
}
return $arr;
}
Ho bisogno di documentare il tipo di ritorno della funzione. Naturalmente potrei semplicemente usare array
, ma questo non fornisce tutte le informazioni che possono essere fornite e non dice allo sviluppatore molto sulla vera natura della funzione.
Come posso documentare il tipo "array di [tipo]" in PHPDoc?
avete provato '@var ObjectType []'? – Robert
@Robert no, ma la ricerca di quello ha dato un risultato! :) http://www.phpdoc.org/docs/latest/for-users/types.html#arrays – Keelan
Vedere https://github.com/phpDocumentor/phpDocumentor2/issues/650 –