I'm familiar with remove_action
when removing an action in WordPress.
To create the action:
add_action( 'action_hook', 'function_name', 10, 3 );
To remove the action:
remove_action( 'action_hook', 'function_name', 10, 3 );
But how can I remove an action which uses the current object? e.g $this
add_action( 'some_action_hook', array( $this, 'some_function' ) );
Ref: