Community
Participate
Working Groups
Have the following files in your project: file AAA.php <?php class AAA { function some_function() { echo "You are in class AAA"; } } file BBB.php: <?php class BBB { function some_function() { echo "You are in class BBB"; } } file file1.php <?php if ($test=123) { $a=new AAA(); } else { $a= new BBB(); } $a->some_function(); Crtl+click on the last line on some_function() Expected: You are offered to choose one of the files/classes in AAA.php and BBB.php Actual: Always BBB opens
fixed in head and branch
[Petyo Tanchev] Tested on 2.2.1.v20100829 Fixed