New to eclipse (from intellij).
In Eclipse + Java, there seems to be robust support for ctrl+click on a member then jump to its implementation (Classes, interfaces, methods, member vars, etc). I've got a PHP PDT project running and I'm noticing that I can't jump to things like I'd hope.
some examples:
Given:
class Foo extends Foos_Dad {
private $fooHelperObject;
public function __contstruct(){
parent::__construct();
$this->foooHelperObject = new fooHelperObject();
}
public function doFooStuff(){
return $this->fooHelperObject->doHelperStuff();
}
}
When pressing ctrl and hovering over Foos_Dad, parent::, $this->fooHelperObject and doHelperStuff(), I cannot jump to their implementations if they are outside the specific file i'm currently viewing. That sucks. I can do most of this in Java so I'm suspicious of my own config issues within eclipse. Can anyone with more Eclipse Ninja-foo lend a hand?
Thanks