Automattic\WooCommerce\Admin\RemoteInboxNotifications

PluginVersionRuleProcessor::validate()publicWC 1.0

Validates the rule.

Method of the class: PluginVersionRuleProcessor{}

No Hooks.

Return

true|false. Pass/fail.

Usage

$PluginVersionRuleProcessor = new PluginVersionRuleProcessor();
$PluginVersionRuleProcessor->validate( $rule );
$rule(object) (required)
The rule to validate.

PluginVersionRuleProcessor::validate() code WC 8.7.0

public function validate( $rule ) {
	if ( ! isset( $rule->plugin ) ) {
		return false;
	}

	if ( ! isset( $rule->version ) ) {
		return false;
	}

	if ( ! isset( $rule->operator ) ) {
		return false;
	}

	return true;
}