Automattic\WooCommerce\Internal\Admin

ShippingLabelBannerDisplayRules::wcs_up_to_date()privateWC 1.0

Checks if WooCommerce Shipping & Tax is up to date.

Method of the class: ShippingLabelBannerDisplayRules{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->wcs_up_to_date();

ShippingLabelBannerDisplayRules::wcs_up_to_date() code WC 8.7.0

private function wcs_up_to_date() {
	return $this->wcs_version && version_compare( $this->wcs_version, $this->min_wcs_version, '>=' );
}