I have a ->load() method that includes and returns given class name. So it can return different data types. Can I enable any kind of code hinting in netbeans?
$msg = $this->load('message');
$msg-> // hinting should list message class methods
$usr = $this->load('user');
$usr-> // hinting should list user class methods