Assume we have the following class hierarchy: ```php class A { public function m(): void {} } class B extends A {} class C extends A {} ``` When `A::m()` is removed, BCC reports `Method A#m() was removed` 3 times, once for the base class and once more for every descendant.