Automattic\WooCommerce\Internal\Admin

RemoteInboxNotifications::__construct()publicWC 1.0

Hook into WooCommerce.

Method of the class: RemoteInboxNotifications{}

No Hooks.

Return

null. Nothing (null).

Usage

$RemoteInboxNotifications = new RemoteInboxNotifications();
$RemoteInboxNotifications->__construct();

RemoteInboxNotifications::__construct() code WC 8.7.0

public function __construct() {
	if ( Features::is_enabled( 'remote-inbox-notifications' ) ) {
		RemoteInboxNotificationsEngine::init();
	}
}