Automattic\WooCommerce\Internal\Admin
Events::possibly_update_notes
Updates notes that should be updated.
Method of the class: Events{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->possibly_update_notes();
Events::possibly_update_notes() Events::possibly update notes code WC 10.6.2
protected function possibly_update_notes() {
foreach ( self::$note_classes_to_added_or_updated as $note_class ) {
if ( method_exists( $note_class, 'possibly_update_note' ) ) {
$note_class::possibly_update_note();
}
}
}