MailPoet\EmailEditor\Engine

Dependency_Check::are_dependencies_met()publicWC 1.0

Checks if all dependencies are met.

Method of the class: Dependency_Check{}

No Hooks.

Return

null. Nothing (null).

Usage

$Dependency_Check = new Dependency_Check();
$Dependency_Check->are_dependencies_met(): bool;

Dependency_Check::are_dependencies_met() code WC 9.8.1

public function are_dependencies_met(): bool {
	if ( ! $this->is_wp_version_compatible() ) {
		return false;
	}
	return true;
}