Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » Eclipse PDT, click through (call hierarchy) broken when in the same namespace
Eclipse PDT, click through (call hierarchy) broken when in the same namespace [message #1404448] Fri, 01 August 2014 13:19 Go to next message
Iltar van der Berg is currently offline Iltar van der BergFriend
Messages: 1
Registered: August 2014
Junior Member
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).
Re: Eclipse PDT, click through (call hierarchy) broken when in the same namespace [message #1415723 is a reply to message #1404448] Wed, 03 September 2014 13:14 Go to previous message
Dawid Pakula is currently offline Dawid PakulaFriend
Messages: 291
Registered: March 2013
Senior Member
Fixed in head: https://bugs.eclipse.org/bugs/show_bug.cgi?id=442964 Wink

Will be released with PDT 3.3.1


Previous Topic:shortcut to clone editor window
Next Topic:Eclipse sometimes respond late!
Goto Forum:
  


Current Time: Tue Mar 19 08:35:26 GMT 2024

Powered by FUDForum. Page generated in 0.01424 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top