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