Since there is no code example and what you expect to see .... I can only assume that you are after either "Navigate | Call Hierarchy" (then choose proper hierarchy "direction" in Hierarchy tool window) or maybe even "Navigate | Method Hierarchy"
Class One
{
public function QQQ()
{
echo "Meow";
}
}
class Two
{
public function WWW()
{
$A = new One();
$A->QQQ();
}
}
class Three
{
public function EEE()
{
$A = new One();
$A->QQQ();
}
}
Hi there,

Since there is no code example and what you expect to see .... I can only assume that you are after either "Navigate | Call Hierarchy" (then choose proper hierarchy "direction" in Hierarchy tool window) or maybe even "Navigate | Method Hierarchy"
Hello!
Thanks for the answer.
I have a class with a method.
I want to check which other classes this method is used?
Sincerely yours
Stephan
Navigate | Call Hierarchy...
Hello!
Thank you. If you come to Germany you a free beer.
Sincerely yours
Stephan