in reply to Who am I? Inheritance question

How about
if ($user->isa('Client')) { $user->method(); }
or
if ($user->can('method')) { $user->method(); }