Since a month or so the feature to click through classes and their methods are broken for us. Call hierarchy is also greyed out for us. This occurs for all classes that are in the same namespace. However, I can still use the autocomplete, so pdt still knows what class it is, just the call hierarchy is broken.
/src/My/Namespace/MyClass.php
namespace My\Namespace;
class MyClass
{
public function doSomething() {}
}
/test/My/Namespace/MyClassTest.php
namespace My\Namespace;
class MyClassTest
{
public function __construct()
{
$this->my_class = new MyClass(); // can't click on MyClass
$this->my_class->doSomething(); // autocomplete on this still works
}
}
eclipse.buildId=4.3.2.M20140221-1700
PDT Extensions 0.21.0.201407100921
Any idea what I can do to fix this? It did work before my update around 1 month ago somewhere to have 2 folder structures having the same namespace (and allowed by PSR).