When I try to instantiate my class with Codeigniter, Eclipse won't show my methods on auto completion.
This is the way I am trying it:
$this->load->model('myclass');
$this->myclass-> // This shows nothing
But when I use the classic way of php to instantiate my class, the auto completion shows all methods and everything.
$this->load->model('myclass');
$myclass = new myclass();
$myclass-> // This shows all methods
How can I make Eclipse to autocomplete when I type $this->myclass
?