<?php
namespace Automattic\WooCommerce\Blocks;
use Automattic\WooCommerce\Admin\Notes\Note;
use Automattic\WooCommerce\Admin\Notes\Notes;
class InboxNotifications {
const SURFACE_CART_CHECKOUT_NOTE_NAME = 'surface_cart_checkout';
public static function delete_surface_cart_checkout_blocks_notification() {
Notes::delete_notes_with_name( self::SURFACE_CART_CHECKOUT_NOTE_NAME );
}
}