Automattic\WooCommerce\Internal\Admin\Notes
MagentoMigration::save_note
Save the note to the database.
Method of the class: MagentoMigration{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = MagentoMigration::save_note();
MagentoMigration::save_note() MagentoMigration::save note code WC 10.7.0
public static function save_note() {
$note = self::get_note();
if ( self::note_exists() ) {
return;
}
$note->save();
}