Often when I am working in a class, I would like to start typing a property/method name and I would love to see which ones I can override.
Example:
class bar {
public string $dollar;
public function dollar(){}
}
Class foo extends Bar{
do<CURSOR>
}
At this point suggest to implement or override the variable.