Automattic\WooCommerce\Internal\Admin

Events::possibly_update_notes()protectedWC 1.0

Updates notes that should be updated.

Method of the class: Events{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->possibly_update_notes();

Events::possibly_update_notes() code WC 8.7.0

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();
		}
	}
}