Hello,
does anybody know how can I tell PHPEd code parser that particular variable is certain object?
For example this does not work:
class{
/**
* @var EpdfInputField
*/
protected $field = array();
function getTitle($id){
/**
* @var $this->field EpdfInputField
*/
return $this->field[$id]->[pressing CTRL+SPACE] will show nothing, it should list out EpdfInputField public members.
}
}
|
Since I am referring quite often to $this->field[$id], I would really need PHPEd parser to identify, that variable $this->field is array always referring to object of type EpdfInputField.
Please anybody..?
Thanx a lot.
Lubos