Hello!
Could it be possible to include parent classes and interfaces directly in Code Navigator? This would greatly improve code navigation.
EXAMPLE PHP CODE:
 	
	interface SomeInterface {}
 
class SomeOtherClass {}
 
class ParentClass extends SomeOtherClass {}
 
class ChildClass extends ParentClass implements SomeInterface {} | 	
 
CURRENT CODE NAVIGATOR'S REPRESENTATION OF ChildClass
 	
	[-]class ChildClass extends ParentClass implements SomeInterface
 
 :... ChildClass properties and methods ... | 	
 
SUGGESTED CODE NAVIGATOR'S REPRESENTATION OF ChildClass
 	
	[-]class ChildClass extends ParentClass implements SomeInterface
 
 :.[-]class ParentClass extends SomeOtherClass
 
 :  :.[-]class SomeOtherClass
 
 :  :  :... SomeOtherClass properties and methods ...
 
 :  :... ParentClass properties and methods ...
 
 :.[-]interface SomeInterface
 
 :  :... SomeInterface methods ...
 
 :... ChildClass properties and methods ... |