$this is used internally in a class to point towards internal methods or properties with $this->method();
However in WordPress code, I noticed:
class ABC{
function efg(){
do_action('hookname', $this);
}
}
What is $this on its own supposed to mean?